From a04305e86cc078cff9fb629c7d1decf0505f19e6 Mon Sep 17 00:00:00 2001 From: Jared Parsons Date: Thu, 7 Mar 2019 09:44:31 -0800 Subject: [PATCH] Enable roll forward in our .NET Core exes This changes our build to mark all of our .NET Core applications as rolling forward on major / minor versions of the .NET framework. Presently our tools ship inside both .NET Core 2 and 3 SDKs. This setting allows our tools to run unmodified in both settings. --- eng/config/runtimeconfig.template.json | 3 +++ eng/targets/Imports.targets | 6 ++++++ 2 files changed, 9 insertions(+) create mode 100644 eng/config/runtimeconfig.template.json diff --git a/eng/config/runtimeconfig.template.json b/eng/config/runtimeconfig.template.json new file mode 100644 index 00000000000..384e2f49e4b --- /dev/null +++ b/eng/config/runtimeconfig.template.json @@ -0,0 +1,3 @@ +{ + "rollForwardOnNoCandidateFx": 2 +} diff --git a/eng/targets/Imports.targets b/eng/targets/Imports.targets index 9ff6f18daba..8686167e6e8 100644 --- a/eng/targets/Imports.targets +++ b/eng/targets/Imports.targets @@ -18,6 +18,12 @@ $(DevDivPackagesDir) + + + $(RepositoryEngineeringDir)config\runtimeconfig.template.json -- GitLab