Browse Source

Release of 7.2 P3

pull/2578/head
Christoph Wille 3 years ago
parent
commit
e4a8b62534
  1. 2
      ICSharpCode.Decompiler.Console/ICSharpCode.Decompiler.Console.csproj
  2. 2
      ILSpy/Properties/AssemblyInfo.template.cs
  3. 17
      decompiler-nuget-demos.ipynb

2
ICSharpCode.Decompiler.Console/ICSharpCode.Decompiler.Console.csproj

@ -10,7 +10,7 @@
<InvariantGlobalization>true</InvariantGlobalization> <InvariantGlobalization>true</InvariantGlobalization>
<AssemblyName>ilspycmd</AssemblyName> <AssemblyName>ilspycmd</AssemblyName>
<ToolCommandName>ilspycmd</ToolCommandName> <ToolCommandName>ilspycmd</ToolCommandName>
<Version>7.2.0.6702-preview2</Version> <Version>7.2.0.6791-preview3</Version>
<AssemblyVersion>7.2.0.0</AssemblyVersion> <AssemblyVersion>7.2.0.0</AssemblyVersion>
<FileVersion>7.2.0.0</FileVersion> <FileVersion>7.2.0.0</FileVersion>
<Description>Command-line decompiler using the ILSpy decompilation engine</Description> <Description>Command-line decompiler using the ILSpy decompilation engine</Description>

2
ILSpy/Properties/AssemblyInfo.template.cs

@ -40,7 +40,7 @@ internal static class RevisionClass
public const string Minor = "2"; public const string Minor = "2";
public const string Build = "0"; public const string Build = "0";
public const string Revision = "$INSERTREVISION$"; public const string Revision = "$INSERTREVISION$";
public const string VersionName = "preview3"; public const string VersionName = "preview4";
public const string FullVersion = Major + "." + Minor + "." + Build + ".$INSERTREVISION$$INSERTBRANCHPOSTFIX$$INSERTVERSIONNAMEPOSTFIX$"; public const string FullVersion = Major + "." + Minor + "." + Build + ".$INSERTREVISION$$INSERTBRANCHPOSTFIX$$INSERTVERSIONNAMEPOSTFIX$";
} }

17
decompiler-nuget-demos.ipynb

@ -21,7 +21,7 @@
{ {
"data": { "data": {
"text/html": [ "text/html": [
"<div><div></div><div></div><div><strong>Installed Packages</strong><ul><li><span>ICSharpCode.Decompiler, 7.2.0.6702-preview2</span></li></ul></div></div>" "<div><div></div><div></div><div><strong>Installed Packages</strong><ul><li><span>ICSharpCode.Decompiler, 7.2.0.6791-preview3</span></li></ul></div></div>"
] ]
}, },
"metadata": {}, "metadata": {},
@ -31,12 +31,12 @@
"name": "stdout", "name": "stdout",
"output_type": "stream", "output_type": "stream",
"text": [ "text": [
"ICSharpCode.Decompiler, Version=7.2.0.6702, Culture=neutral, PublicKeyToken=d4bfe873e7598c49\r\n" "ICSharpCode.Decompiler, Version=7.2.0.6791, Culture=neutral, PublicKeyToken=d4bfe873e7598c49\r\n"
] ]
} }
], ],
"source": [ "source": [
"#r \"nuget: ICSharpCode.Decompiler, 7.2.0.6702-preview2\"\n", "#r \"nuget: ICSharpCode.Decompiler, 7.2.0.6791-preview3\"\n",
"\n", "\n",
"using System.Reflection.Metadata;\n", "using System.Reflection.Metadata;\n",
"using ICSharpCode.Decompiler;\n", "using ICSharpCode.Decompiler;\n",
@ -90,7 +90,7 @@
"name": "stdout", "name": "stdout",
"output_type": "stream", "output_type": "stream",
"text": [ "text": [
"1478\r\n" "1480\r\n"
] ]
} }
], ],
@ -121,12 +121,11 @@
"text": [ "text": [
"using System;\r\n", "using System;\r\n",
"\r\n", "\r\n",
"namespace ICSharpCode.Decompiler.Util\r\n", "namespace ICSharpCode.Decompiler.Util;\r\n",
"\r\n",
"public static class Empty<T>\r\n",
"{\r\n", "{\r\n",
"\tpublic static class Empty<T>\r\n", "\tpublic static readonly T[] Array = System.Array.Empty<T>();\r\n",
"\t{\r\n",
"\t\tpublic static readonly T[] Array = System.Array.Empty<T>();\r\n",
"\t}\r\n",
"}\r\n", "}\r\n",
"\r\n" "\r\n"
] ]

Loading…
Cancel
Save