Browse Source

Create dedicated namespace for project decompiler

pull/2031/head
dymanoid 5 years ago
parent
commit
a952cda502
  1. 1
      ICSharpCode.Decompiler.Console/IlspyCmdProgram.cs
  2. 1
      ICSharpCode.Decompiler.PowerShell/GetDecompiledProjectCmdlet.cs
  3. 1
      ICSharpCode.Decompiler.Tests/RoundtripAssembly.cs
  4. 2
      ICSharpCode.Decompiler/CSharp/ProjectDecompiler/WholeProjectDecompiler.cs
  5. 1
      ICSharpCode.Decompiler/DebugInfo/PortablePdbWriter.cs
  6. 2
      ICSharpCode.Decompiler/ICSharpCode.Decompiler.csproj
  7. 1
      ILSpy/Languages/CSharpLanguage.cs
  8. 2
      ILSpy/TextView/DecompilerTextView.cs

1
ICSharpCode.Decompiler.Console/IlspyCmdProgram.cs

@ -13,6 +13,7 @@ using System.Reflection.Metadata; @@ -13,6 +13,7 @@ using System.Reflection.Metadata;
using System.Reflection.PortableExecutable;
using ICSharpCode.Decompiler.DebugInfo;
using ICSharpCode.Decompiler.PdbProvider;
using ICSharpCode.Decompiler.CSharp.ProjectDecompiler;
// ReSharper disable All
namespace ICSharpCode.Decompiler.Console

1
ICSharpCode.Decompiler.PowerShell/GetDecompiledProjectCmdlet.cs

@ -5,6 +5,7 @@ using System.Management.Automation; @@ -5,6 +5,7 @@ using System.Management.Automation;
using System.Threading;
using System.Threading.Tasks;
using ICSharpCode.Decompiler.CSharp;
using ICSharpCode.Decompiler.CSharp.ProjectDecompiler;
using ICSharpCode.Decompiler.Metadata;
namespace ICSharpCode.Decompiler.PowerShell

1
ICSharpCode.Decompiler.Tests/RoundtripAssembly.cs

@ -24,6 +24,7 @@ using System.Reflection.PortableExecutable; @@ -24,6 +24,7 @@ using System.Reflection.PortableExecutable;
using System.Text.RegularExpressions;
using System.Threading;
using ICSharpCode.Decompiler.CSharp;
using ICSharpCode.Decompiler.CSharp.ProjectDecompiler;
using ICSharpCode.Decompiler.Metadata;
using ICSharpCode.Decompiler.Tests.Helpers;
using Microsoft.Build.Locator;

2
ICSharpCode.Decompiler/CSharp/WholeProjectDecompiler.cs → ICSharpCode.Decompiler/CSharp/ProjectDecompiler/WholeProjectDecompiler.cs

@ -37,7 +37,7 @@ using ICSharpCode.Decompiler.Metadata; @@ -37,7 +37,7 @@ using ICSharpCode.Decompiler.Metadata;
using ICSharpCode.Decompiler.Solution;
using ICSharpCode.Decompiler.DebugInfo;
namespace ICSharpCode.Decompiler.CSharp
namespace ICSharpCode.Decompiler.CSharp.ProjectDecompiler
{
/// <summary>
/// Decompiles an assembly into a visual studio project file.

1
ICSharpCode.Decompiler/DebugInfo/PortablePdbWriter.cs

@ -30,6 +30,7 @@ using System.Security.Cryptography; @@ -30,6 +30,7 @@ using System.Security.Cryptography;
using System.Text;
using ICSharpCode.Decompiler.CSharp;
using ICSharpCode.Decompiler.CSharp.OutputVisitor;
using ICSharpCode.Decompiler.CSharp.ProjectDecompiler;
using ICSharpCode.Decompiler.CSharp.Syntax;
using ICSharpCode.Decompiler.IL;
using ICSharpCode.Decompiler.Metadata;

2
ICSharpCode.Decompiler/ICSharpCode.Decompiler.csproj

@ -277,7 +277,7 @@ @@ -277,7 +277,7 @@
<Compile Include="CSharp\Transforms\IAstTransform.cs" />
<Compile Include="CSharp\Transforms\IntroduceUnsafeModifier.cs" />
<Compile Include="CSharp\Transforms\ReplaceMethodCallsWithOperators.cs" />
<Compile Include="CSharp\WholeProjectDecompiler.cs" />
<Compile Include="CSharp\ProjectDecompiler\WholeProjectDecompiler.cs" />
<Compile Include="CSharp\Transforms\AddXmlDocumentationTransform.cs" />
<Compile Include="DecompileRun.cs" />
<Compile Include="Disassembler\ILParser.cs" />

1
ILSpy/Languages/CSharpLanguage.cs

@ -32,6 +32,7 @@ using ICSharpCode.AvalonEdit.Utils; @@ -32,6 +32,7 @@ using ICSharpCode.AvalonEdit.Utils;
using ICSharpCode.Decompiler;
using ICSharpCode.Decompiler.CSharp;
using ICSharpCode.Decompiler.CSharp.OutputVisitor;
using ICSharpCode.Decompiler.CSharp.ProjectDecompiler;
using ICSharpCode.Decompiler.CSharp.Syntax;
using ICSharpCode.Decompiler.CSharp.Transforms;
using ICSharpCode.Decompiler.Metadata;

2
ILSpy/TextView/DecompilerTextView.cs

@ -45,8 +45,8 @@ using ICSharpCode.AvalonEdit.Highlighting.Xshd; @@ -45,8 +45,8 @@ using ICSharpCode.AvalonEdit.Highlighting.Xshd;
using ICSharpCode.AvalonEdit.Rendering;
using ICSharpCode.AvalonEdit.Search;
using ICSharpCode.Decompiler;
using ICSharpCode.Decompiler.CSharp;
using ICSharpCode.Decompiler.CSharp.OutputVisitor;
using ICSharpCode.Decompiler.CSharp.ProjectDecompiler;
using ICSharpCode.Decompiler.Documentation;
using ICSharpCode.Decompiler.Metadata;
using ICSharpCode.Decompiler.Output;

Loading…
Cancel
Save