diff --git a/ICSharpCode.Decompiler.Console/ICSharpCode.Decompiler.Console.csproj b/ICSharpCode.Decompiler.Console/ICSharpCode.Decompiler.Console.csproj
index 72c83c583..46c40f36b 100644
--- a/ICSharpCode.Decompiler.Console/ICSharpCode.Decompiler.Console.csproj
+++ b/ICSharpCode.Decompiler.Console/ICSharpCode.Decompiler.Console.csproj
@@ -10,7 +10,7 @@
true
ilspycmd
ilspycmd
- 7.2.0.6702-preview2
+ 7.2.0.6791-preview3
7.2.0.0
7.2.0.0
Command-line decompiler using the ILSpy decompilation engine
diff --git a/ILSpy/Properties/AssemblyInfo.template.cs b/ILSpy/Properties/AssemblyInfo.template.cs
index 423d364a0..05d4ed568 100644
--- a/ILSpy/Properties/AssemblyInfo.template.cs
+++ b/ILSpy/Properties/AssemblyInfo.template.cs
@@ -40,7 +40,7 @@ internal static class RevisionClass
public const string Minor = "2";
public const string Build = "0";
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$";
}
diff --git a/decompiler-nuget-demos.ipynb b/decompiler-nuget-demos.ipynb
index af107bebc..18956d2a5 100644
--- a/decompiler-nuget-demos.ipynb
+++ b/decompiler-nuget-demos.ipynb
@@ -21,7 +21,7 @@
{
"data": {
"text/html": [
- "
Installed Packages- ICSharpCode.Decompiler, 7.2.0.6702-preview2
"
+ "Installed Packages- ICSharpCode.Decompiler, 7.2.0.6791-preview3
"
]
},
"metadata": {},
@@ -31,12 +31,12 @@
"name": "stdout",
"output_type": "stream",
"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": [
- "#r \"nuget: ICSharpCode.Decompiler, 7.2.0.6702-preview2\"\n",
+ "#r \"nuget: ICSharpCode.Decompiler, 7.2.0.6791-preview3\"\n",
"\n",
"using System.Reflection.Metadata;\n",
"using ICSharpCode.Decompiler;\n",
@@ -90,7 +90,7 @@
"name": "stdout",
"output_type": "stream",
"text": [
- "1478\r\n"
+ "1480\r\n"
]
}
],
@@ -121,12 +121,11 @@
"text": [
"using System;\r\n",
"\r\n",
- "namespace ICSharpCode.Decompiler.Util\r\n",
+ "namespace ICSharpCode.Decompiler.Util;\r\n",
+ "\r\n",
+ "public static class Empty\r\n",
"{\r\n",
- "\tpublic static class Empty\r\n",
- "\t{\r\n",
- "\t\tpublic static readonly T[] Array = System.Array.Empty();\r\n",
- "\t}\r\n",
+ "\tpublic static readonly T[] Array = System.Array.Empty();\r\n",
"}\r\n",
"\r\n"
]