Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Boemer <sbomer@gmail.com>2022-08-06 02:33:34 +0300
committerGitHub <noreply@github.com>2022-08-06 02:33:34 +0300
commitdede5f58dc9b7296de884ed62688b35d5b154b78 (patch)
tree2d1b085e2d491f9006ea5b1214cea08961cb22ef
parent82c6dc6f82aeb90cfbe509ae07cf539eecb75550 (diff)
Use preview 5 framework version in runtimeconfig (#2948)
-rw-r--r--src/linker/Mono.Linker.csproj5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/linker/Mono.Linker.csproj b/src/linker/Mono.Linker.csproj
index 6e6b5a002..4bb8e0758 100644
--- a/src/linker/Mono.Linker.csproj
+++ b/src/linker/Mono.Linker.csproj
@@ -3,6 +3,11 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<ServerGarbageCollection>true</ServerGarbageCollection>
+ <!-- Pick a RuntimeFrameworkVersion at least as low as the DefaultRuntimeFrameworkVersion
+ of the SDK used by dotnet/runtime and dotnet/sdk, to ensure that the runtimeconfig.json
+ specifies a version available in those repos. This can be removed once they catch up to
+ the SDK version in our global.json. -->
+ <RuntimeFrameworkVersion>7.0.0-preview.5.22301.12</RuntimeFrameworkVersion>
</PropertyGroup>
<PropertyGroup>