Skip to content

Commit

Permalink
Rename ics.d.Console to ics.ILSpyCmd
Browse files Browse the repository at this point in the history
  • Loading branch information
christophwille committed Apr 7, 2022
1 parent e044038 commit afff9c3
Show file tree
Hide file tree
Showing 14 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-frontends.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: ilspycmd NuGet Package
path: ICSharpCode.Decompiler.Console/bin/Release/ilspycmd*.nupkg
path: ICSharpCode.ILSpyCmd/bin/Release/ilspycmd*.nupkg
if-no-files-found: error

- name: Upload binlog
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-ilspy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,5 +143,5 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: ilspycmd dotnet tool (${{ matrix.configuration }})
path: ICSharpCode.Decompiler.Console\bin\Release\ilspycmd*.nupkg
path: ICSharpCode.ILSpyCmd\bin\Release\ilspycmd*.nupkg
if-no-files-found: error
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
using System.Reflection.PortableExecutable;
using System.Threading;

using ICSharpCode.Decompiler;
using ICSharpCode.Decompiler.CSharp;
using ICSharpCode.Decompiler.CSharp.ProjectDecompiler;
using ICSharpCode.Decompiler.DebugInfo;
Expand All @@ -20,7 +21,7 @@
using McMaster.Extensions.CommandLineUtils;
// ReSharper disable All

namespace ICSharpCode.Decompiler.Console
namespace ICSharpCode.ILSpyCmd
{
[Command(Name = "ilspycmd", Description = "dotnet tool for decompiling .NET assemblies and generating portable PDBs",
ExtendedHelpText = @"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ReSharper disable InconsistentNaming

namespace ICSharpCode.Decompiler.Console
namespace ICSharpCode.ILSpyCmd
{
public class ProgramExitCodes
{
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

using ICSharpCode.Decompiler.TypeSystem;

namespace ICSharpCode.Decompiler.Console
namespace ICSharpCode.ILSpyCmd
{
public static class TypesParser
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.ComponentModel.DataAnnotations;
using System.IO;

namespace ICSharpCode.Decompiler.Console
namespace ICSharpCode.ILSpyCmd
{
[AttributeUsage(AttributeTargets.Class)]
public sealed class ProjectOptionRequiresOutputDirectoryValidationAttribute : ValidationAttribute
Expand Down
2 changes: 1 addition & 1 deletion ILSpy.XPlat.slnf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"solution": {
"path": "ILSpy.sln",
"projects": [
"ICSharpCode.Decompiler.Console\\ICSharpCode.Decompiler.Console.csproj",
"ICSharpCode.ILSpyCmd\\ICSharpCode.ILSpyCmd.csproj",
"ICSharpCode.Decompiler.PowerShell\\ICSharpCode.Decompiler.PowerShell.csproj",
"ICSharpCode.Decompiler.TestRunner\\ICSharpCode.Decompiler.TestRunner.csproj",
"ICSharpCode.Decompiler.Tests\\ICSharpCode.Decompiler.Tests.csproj",
Expand Down
2 changes: 1 addition & 1 deletion ILSpy.sln
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ILSpy.Tests", "ILSpy.Tests\
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ILSpy.ReadyToRun", "ILSpy.ReadyToRun\ILSpy.ReadyToRun.csproj", "{0313F581-C63B-43BB-AA9B-07615DABD8A3}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ICSharpCode.Decompiler.Console", "ICSharpCode.Decompiler.Console\ICSharpCode.Decompiler.Console.csproj", "{743B439A-E7AD-4A0A-BAB6-222E1EA83C6D}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ICSharpCode.ILSpyCmd", "ICSharpCode.ILSpyCmd\ICSharpCode.ILSpyCmd.csproj", "{743B439A-E7AD-4A0A-BAB6-222E1EA83C6D}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ICSharpCode.Decompiler.PowerShell", "ICSharpCode.Decompiler.PowerShell\ICSharpCode.Decompiler.PowerShell.csproj", "{50060E0C-FA25-41F4-B72F-8490324EC9F0}"
EndProject
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Aside from the WPF UI ILSpy (downloadable via Releases, see also [plugins](https
* Our Visual Studio Code Extension [repository](https://github.com/icsharpcode/ilspy-vscode) | [marketplace](https://marketplace.visualstudio.com/items?itemName=icsharpcode.ilspy-vscode)
* Our Linux/Mac/Windows ILSpy UI based on [Avalonia](http://www.avaloniaui.net/) - check out https://github.com/icsharpcode/AvaloniaILSpy
* Our [ICSharpCode.Decompiler](https://www.nuget.org/packages/ICSharpCode.Decompiler/) NuGet for your own projects
* Our dotnet tool for Linux/Mac/Windows - check out [ICSharpCode.Decompiler.Console](ICSharpCode.Decompiler.Console) in this repository
* Our dotnet tool for Linux/Mac/Windows - check out [ILSpyCmd](ICSharpCode.ILSpyCmd) in this repository
* Our Linux/Mac/Windows [PowerShell cmdlets](ICSharpCode.Decompiler.PowerShell) in this repository

Features
Expand Down
2 changes: 1 addition & 1 deletion doc/third-party-notices.txt
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


License Notice for CommandLineUtils (part of ICSharpCode.Decompiler.Console)
License Notice for CommandLineUtils (part of ICSharpCode.ILSpyCmd)
---------------------------

https://github.com/natemcmaster/CommandLineUtils/blob/master/LICENSE.txt
Expand Down

0 comments on commit afff9c3

Please sign in to comment.