diff --git a/ICSharpCode.Decompiler/Properties/DecompilerVersionInfo.template.cs b/ICSharpCode.Decompiler/Properties/DecompilerVersionInfo.template.cs index 363aaa947..5176e589d 100644 --- a/ICSharpCode.Decompiler/Properties/DecompilerVersionInfo.template.cs +++ b/ICSharpCode.Decompiler/Properties/DecompilerVersionInfo.template.cs @@ -4,7 +4,7 @@ public static class DecompilerVersionInfo public const string Minor = "0"; public const string Build = "0"; public const string Revision = "$INSERTREVISION$"; - public const string VersionName = "preview1"; + public const string VersionName = "rc"; public const string Version = Major + "." + Minor + "." + Build + "." + Revision; public const string FullVersion = Major + "." + Minor + "." + Build + ".$INSERTREVISION$$INSERTBRANCHPOSTFIX$$INSERTVERSIONNAMEPOSTFIX$"; diff --git a/ICSharpCode.ILSpyCmd/README.md b/ICSharpCode.ILSpyCmd/README.md index f4924eb3f..b93761c27 100644 --- a/ICSharpCode.ILSpyCmd/README.md +++ b/ICSharpCode.ILSpyCmd/README.md @@ -2,15 +2,15 @@ To install: -``` +``` bash dotnet tool install --global ilspycmd ``` Help output (`ilspycmd --help`): -``` -ilspycmd: 10.1.0.8361 -ICSharpCode.Decompiler: 10.1.0.8361 +``` text +ilspycmd: 11.0.0.9283 +ICSharpCode.Decompiler: 11.0.0.9283 dotnet tool for decompiling .NET assemblies and generating portable PDBs @@ -26,6 +26,9 @@ Options: -p|--project Decompile assembly as compilable project. This requires the output directory option. -t|--type The fully qualified name of the type to decompile. + -m|--member The single member to decompile: an XML documentation id string (e.g. + "M:System.String.Concat(System.String,System.String)", as also accepted by the + UI's --navigateto option) or a metadata token (e.g. 0x06000005). -il|--ilcode Show IL code. --il-sequence-points Show IL with sequence points. Implies -il. -genpdb|--generate-pdb Generate PDB. @@ -43,7 +46,7 @@ Options: CSharp11_0, CSharp12_0, CSharp13_0, Preview or Latest Allowed values are: CSharp1, CSharp2, CSharp3, CSharp4, CSharp5, CSharp6, CSharp7, CSharp7_1, CSharp7_2, CSharp7_3, CSharp8_0, CSharp9_0, CSharp10_0, - CSharp11_0, CSharp12_0, CSharp13_0, CSharp14_0, Preview, Latest. + CSharp11_0, CSharp12_0, CSharp13_0, CSharp14_0, CSharp15_0, Preview, Latest. Default value is: Latest. --ilspy-settingsfile Path to an ILSpy settings file. -ds|--decompiler-setting Set a decompiler setting. Use multiple times to set multiple settings.