Browse Source

Update for 7.1-p1 development

pull/2385/head
Christoph Wille 4 years ago
parent
commit
909c6245b9
  1. 2
      DecompilerNuGetDemos.workbook
  2. 6
      ICSharpCode.Decompiler.Console/ICSharpCode.Decompiler.Console.csproj
  3. 4
      ILSpy/Properties/AssemblyInfo.template.cs
  4. 6
      decompiler-nuget-demos.ipynb

2
DecompilerNuGetDemos.workbook

@ -6,7 +6,7 @@ platforms: @@ -6,7 +6,7 @@ platforms:
- DotNetCore
packages:
- id: ICSharpCode.Decompiler
version: 7.0.0.6472-rc1
version: 7.0.0.6488
---
Setup: load the references required to work with the decompiler

6
ICSharpCode.Decompiler.Console/ICSharpCode.Decompiler.Console.csproj

@ -9,7 +9,9 @@ @@ -9,7 +9,9 @@
<PackAsTool>true</PackAsTool>
<AssemblyName>ilspycmd</AssemblyName>
<ToolCommandName>ilspycmd</ToolCommandName>
<Version>7.0.0.0-rc2</Version>
<Version>7.1.0.6488-preview1</Version>
<AssemblyVersion>7.1.0.0</AssemblyVersion>
<FileVersion>7.1.0.0</FileVersion>
<Description>Command-line decompiler using the ILSpy decompilation engine</Description>
<Copyright>Copyright 2011-2021 AlphaSierraPapa</Copyright>
<PackageProjectUrl>https://github.com/icsharpcode/ILSpy/</PackageProjectUrl>
@ -17,8 +19,6 @@ @@ -17,8 +19,6 @@
<PackageIcon>ILSpyCmdNuGetPackageIcon.png</PackageIcon>
<RepositoryUrl>https://github.com/icsharpcode/ILSpy/</RepositoryUrl>
<Company />
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<FileVersion>7.0.0.0</FileVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>ILSpy Team</Authors>
</PropertyGroup>

4
ILSpy/Properties/AssemblyInfo.template.cs

@ -37,10 +37,10 @@ using System.Runtime.InteropServices; @@ -37,10 +37,10 @@ using System.Runtime.InteropServices;
internal static class RevisionClass
{
public const string Major = "7";
public const string Minor = "0";
public const string Minor = "1";
public const string Build = "0";
public const string Revision = "$INSERTREVISION$";
public const string VersionName = null;
public const string VersionName = "preview1";
public const string FullVersion = Major + "." + Minor + "." + Build + ".$INSERTREVISION$$INSERTBRANCHPOSTFIX$$INSERTVERSIONNAMEPOSTFIX$";
}

6
decompiler-nuget-demos.ipynb

@ -18,19 +18,19 @@ @@ -18,19 +18,19 @@
"outputs": [
{
"data": {
"text/plain": "Installed package ICSharpCode.Decompiler version 7.0.0.6472-rc1"
"text/plain": "Installed package ICSharpCode.Decompiler version 7.0.0.6488"
},
"output_type": "unknown"
},
{
"data": {
"text/plain": "ICSharpCode.Decompiler, Version=7.0.0.6472, Culture=neutral, PublicKeyToken=d4bfe873e7598c49\r\n"
"text/plain": "ICSharpCode.Decompiler, Version=7.0.0.6488, Culture=neutral, PublicKeyToken=d4bfe873e7598c49\r\n"
},
"output_type": "unknown"
}
],
"source": [
"#r \"nuget: ICSharpCode.Decompiler, 7.0.0.6472-rc1\"\n",
"#r \"nuget: ICSharpCode.Decompiler, 7.0.0.6488\"\n",
"\n",
"using System.Reflection.Metadata;\n",
"using ICSharpCode.Decompiler;\n",

Loading…
Cancel
Save