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:
- DotNetCore - DotNetCore
packages: packages:
- id: ICSharpCode.Decompiler - id: ICSharpCode.Decompiler
version: 7.0.0.6472-rc1 version: 7.0.0.6488
--- ---
Setup: load the references required to work with the decompiler Setup: load the references required to work with the decompiler

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

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

4
ILSpy/Properties/AssemblyInfo.template.cs

@ -37,10 +37,10 @@ using System.Runtime.InteropServices;
internal static class RevisionClass internal static class RevisionClass
{ {
public const string Major = "7"; public const string Major = "7";
public const string Minor = "0"; public const string Minor = "1";
public const string Build = "0"; public const string Build = "0";
public const string Revision = "$INSERTREVISION$"; 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$"; public const string FullVersion = Major + "." + Minor + "." + Build + ".$INSERTREVISION$$INSERTBRANCHPOSTFIX$$INSERTVERSIONNAMEPOSTFIX$";
} }

6
decompiler-nuget-demos.ipynb

@ -18,19 +18,19 @@
"outputs": [ "outputs": [
{ {
"data": { "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" "output_type": "unknown"
}, },
{ {
"data": { "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" "output_type": "unknown"
} }
], ],
"source": [ "source": [
"#r \"nuget: ICSharpCode.Decompiler, 7.0.0.6472-rc1\"\n", "#r \"nuget: ICSharpCode.Decompiler, 7.0.0.6488\"\n",
"\n", "\n",
"using System.Reflection.Metadata;\n", "using System.Reflection.Metadata;\n",
"using ICSharpCode.Decompiler;\n", "using ICSharpCode.Decompiler;\n",

Loading…
Cancel
Save