Browse Source

Require .NET 6.0.2 SDK.

Older versions of the .NET 6.0 SDK don't work due to https://github.com/dotnet/wpf/pull/6101
pull/2854/head
Daniel Grunwald 3 years ago
parent
commit
2d8c5fcc9a
  1. 6
      ILSpy/Properties/Resources.resx
  2. 2
      global.json

6
ILSpy/Properties/Resources.resx

@ -432,6 +432,9 @@ Are you sure you want to continue?</value> @@ -432,6 +432,9 @@ Are you sure you want to continue?</value>
<data name="DecompilerSettings.RemoveOptionalArgumentsIfPossible" xml:space="preserve">
<value>Remove optional arguments, if possible</value>
</data>
<data name="DecompilerSettings.RequiredMembers" xml:space="preserve">
<value>Required members</value>
</data>
<data name="DecompilerSettings.SeparateLocalVariableDeclarations" xml:space="preserve">
<value>Separate local variable declarations and initializers (int x = 5; -&gt; int x; x = 5;), if possible</value>
</data>
@ -1054,7 +1057,4 @@ Do you want to continue?</value> @@ -1054,7 +1057,4 @@ Do you want to continue?</value>
<data name="_Window" xml:space="preserve">
<value>_Window</value>
</data>
<data name="DecompilerSettings.RequiredMembers" xml:space="preserve">
<value>Required members</value>
</data>
</root>

2
global.json

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
{
"sdk": {
"version": "6.0.100",
"version": "6.0.200",
"rollForward": "major",
"allowPrerelease": true
}

Loading…
Cancel
Save