Browse Source

rename debugger assembly into ILSpy.Debugger.Plugin

pull/219/head
Eusebiu Marcu 15 years ago
parent
commit
3d0d4ee568
  1. 4
      Debugger/ILSpy.Debugger/ILSpy.Debugger.csproj
  2. 1
      ILSpy/App.xaml.cs

4
Debugger/ILSpy.Debugger/ILSpy.Debugger.csproj

@ -6,7 +6,7 @@ @@ -6,7 +6,7 @@
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<OutputType>Library</OutputType>
<RootNamespace>ICSharpCode.ILSpy.Debugger</RootNamespace>
<AssemblyName>ILSpy.Debugger</AssemblyName>
<AssemblyName>ILSpy.Debugger.Plugin</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<AppDesignerFolder>Properties</AppDesignerFolder>
<TargetFrameworkProfile>
@ -15,6 +15,8 @@ @@ -15,6 +15,8 @@
<NoStdLib>False</NoStdLib>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<SignAssembly>False</SignAssembly>
<DelaySign>False</DelaySign>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>..\..\ILSpy\bin\Debug\</OutputPath>

1
ILSpy/App.xaml.cs

@ -60,7 +60,6 @@ namespace ICSharpCode.ILSpy @@ -60,7 +60,6 @@ namespace ICSharpCode.ILSpy
var catalog = new AggregateCatalog();
catalog.Catalogs.Add(new AssemblyCatalog(typeof(App).Assembly));
catalog.Catalogs.Add(new DirectoryCatalog(".", "*.Plugin.dll"));
catalog.Catalogs.Add(new DirectoryCatalog(".", "*.Debugger.dll"));
compositionContainer = new CompositionContainer(catalog);

Loading…
Cancel
Save