From d38b6d02d2ee1d1d1f87f02228ed6ebb9c25e917 Mon Sep 17 00:00:00 2001 From: James Groom Date: Tue, 7 May 2024 00:56:05 +1000 Subject: [PATCH] Add build flag for easily overriding TFMs Despite the name, this affects libs too, since those have to match (at least in terms of Framework vs. Core). For example, you could build for .NET Framework 4.6.1 with: `Dist/BuildDebug.sh -p:ExecProjTargetFrameworkOverride=net461` and I believe that will run on XP and later... not sure about building for 32-bit machines though, hopefully that doesn't require code changes. You can't go below `net461` because some of our NuGet dependencies aren't available on those targets. You may pass .NET Core TFMs, but for that you should check out the existing branch+PR. --- src/MainSlnCommon.props | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/MainSlnCommon.props b/src/MainSlnCommon.props index 23178c9c52..ee63db9252 100644 --- a/src/MainSlnCommon.props +++ b/src/MainSlnCommon.props @@ -15,6 +15,10 @@ false + + true + $(ExecProjTargetFrameworkOverride) +