зеркало из https://github.com/jsuarezruiz/dnSpy.git
Use new SDK project, fixes #959
This commit is contained in:
Родитель
8f13e93031
Коммит
b85923da84
|
@ -1,62 +1,29 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{737693E5-CBE3-4D1D-877C-790E6E6E6E8E}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>MakeEverythingPublic</RootNamespace>
|
||||
<AssemblyName>MakeEverythingPublic</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<Copyright>$(DnSpyAssemblyCopyright)</Copyright>
|
||||
<Version>$(DnSpyAssemblyVersion)</Version>
|
||||
<InformationalVersion>$(DnSpyAssemblyInformationalVersion)</InformationalVersion>
|
||||
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="Microsoft.Build.Framework" />
|
||||
<Reference Include="Microsoft.Build.Utilities.v4.0" />
|
||||
<Reference Include="System" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="IVTPatcher.cs" />
|
||||
<Compile Include="MakeEverythingPublic.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Include="MakeEverythingPublic.tasks" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\Libraries\dnlib\src\dnlib.csproj">
|
||||
<Project>{fdfc1237-143f-4919-8318-4926901f4639}</Project>
|
||||
<Name>dnlib</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\Libraries\dnlib\src\dnlib.csproj" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: AssemblyTitle("MakeEverythingPublic")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("MakeEverythingPublic")]
|
||||
[assembly: AssemblyCopyright("Copyright (C) 2014-2018 de4dot@gmail.com")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
|
@ -22,6 +22,7 @@
|
|||
<GarbageFile>$(GarbageFile);$(OutputPath)\SQLitePCLRaw.batteries_v2.dll</GarbageFile>
|
||||
<GarbageFile>$(GarbageFile);$(OutputPath)\SQLitePCLRaw.core.dll</GarbageFile>
|
||||
<GarbageFile>$(GarbageFile);$(OutputPath)\SQLitePCLRaw.provider.e_sqlite3.dll</GarbageFile>
|
||||
<GarbageFile>$(GarbageFile);$(OutputPath)\e_sqlite3.dll</GarbageFile>
|
||||
<GarbageFile>$(GarbageFile);$(OutputPath)\System.Data.Common.dll</GarbageFile>
|
||||
<GarbageFile>$(GarbageFile);$(OutputPath)\System.Globalization.Extensions.dll</GarbageFile>
|
||||
<GarbageFile>$(GarbageFile);$(OutputPath)\System.Net.Http.dll</GarbageFile>
|
||||
|
|
|
@ -0,0 +1,33 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net471</TargetFramework>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
<NeutralLanguage>en</NeutralLanguage>
|
||||
|
||||
<!-- Update App.config whenever this value changes -->
|
||||
<DnSpyAssemblyVersion>5.0.9.0</DnSpyAssemblyVersion>
|
||||
<!-- This is shown in the title bar -->
|
||||
<DnSpyAssemblyInformationalVersion>v5.0.9</DnSpyAssemblyInformationalVersion>
|
||||
<DnSpyAssemblyCopyright>Copyright (C) 2014-2018 de4dot@gmail.com</DnSpyAssemblyCopyright>
|
||||
|
||||
<DiaSymReaderVersion>1.7.0</DiaSymReaderVersion>
|
||||
<IcedVersion>0.9.0</IcedVersion>
|
||||
<MSVSCompositionVersion>15.6.36</MSVSCompositionVersion>
|
||||
<MSVSImagingDesignTimeVersion>15.0.25726-Preview5</MSVSImagingDesignTimeVersion>
|
||||
<MSVSIntellisenseVersion>15.5.27130</MSVSIntellisenseVersion>
|
||||
<MSVSTextVersion>15.5.27130</MSVSTextVersion>
|
||||
<OokiiDialogsVersion>1.0.0</OokiiDialogsVersion>
|
||||
<RoslynVersion>2.9.0</RoslynVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
|
@ -1,83 +1,40 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{B24AAB0F-CA85-4D85-8B46-10D634896E2A}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>Example1.Extension</RootNamespace>
|
||||
<AssemblyName>Example1.Extension.x</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<NoWarn>1685</NoWarn>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<NoWarn>1685</NoWarn>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="PresentationCore" />
|
||||
<Reference Include="PresentationFramework" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.ComponentModel.Composition" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xaml" />
|
||||
<Reference Include="WindowsBase" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="CodeCtxMenus.cs" />
|
||||
<Compile Include="MainMenuCommands.cs" />
|
||||
<Compile Include="MySettings.cs" />
|
||||
<Compile Include="MySettingsControl.xaml.cs">
|
||||
<Compile Update="MySettingsControl.xaml.cs">
|
||||
<DependentUpon>MySettingsControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="MySettingsPage.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="TheExtension.cs" />
|
||||
<Compile Include="ToolBarCommands.cs" />
|
||||
<Compile Include="TreeViewCtxMenus.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj">
|
||||
<Project>{cb6f6372-9479-41e2-83a8-07854326bca8}</Project>
|
||||
<Name>dnSpy.Contracts.DnSpy</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj">
|
||||
<Project>{bb748e78-376f-429a-8d83-9a8946ec179f}</Project>
|
||||
<Name>dnSpy.Contracts.Logic</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\Libraries\dnlib\src\dnlib.csproj">
|
||||
<Project>{fdfc1237-143f-4919-8318-4926901f4639}</Project>
|
||||
<Name>dnlib</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="project.json" />
|
||||
<None Include="README.md" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Page Include="MySettingsControl.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj" />
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj" />
|
||||
<ProjectReference Include="..\..\..\Libraries\dnlib\src\dnlib.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.VisualStudio.Text.UI.Wpf" Version="$(MSVSTextVersion)" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,35 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("Example1.Extension")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Example1.Extension")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2015")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
[assembly: Guid("b24aab0f-ca85-4d85-8b46-10d634896e2a")]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"Microsoft.VisualStudio.Text.UI.Wpf": "15.5.27130"
|
||||
},
|
||||
"frameworks": {
|
||||
"net471": { }
|
||||
},
|
||||
"runtimes": {
|
||||
"win": { }
|
||||
}
|
||||
}
|
|
@ -1,80 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{4613C8A1-28DC-4586-9F9B-D201864CFE1A}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>Example2.Extension</RootNamespace>
|
||||
<AssemblyName>Example2.Extension.x</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<NoWarn>1685</NoWarn>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<NoWarn>1685</NoWarn>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="PresentationCore" />
|
||||
<Reference Include="PresentationFramework" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.ComponentModel.Composition" />
|
||||
<Reference Include="System.Xaml" />
|
||||
<Reference Include="WindowsBase" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="AssemblyChildNodeTabContent.cs" />
|
||||
<Compile Include="Colorizer.cs" />
|
||||
<Compile Include="DocumentViewerToolTipProvider.cs" />
|
||||
<Compile Include="HexColorizer.cs" />
|
||||
<Compile Include="NewDsDocument.cs" />
|
||||
<Compile Include="OutputTextPane.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="TheExtension.cs" />
|
||||
<Compile Include="ToolWindowContent.cs" />
|
||||
<Compile Include="ToolWindowControl.xaml.cs">
|
||||
<Compile Update="ToolWindowControl.xaml.cs">
|
||||
<DependentUpon>ToolWindowControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="TreeNodeDataProvider.cs" />
|
||||
<Compile Include="TreeViewNodeColorizer.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="project.json" />
|
||||
<None Include="README.md" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj">
|
||||
<Project>{cb6f6372-9479-41e2-83a8-07854326bca8}</Project>
|
||||
<Name>dnSpy.Contracts.DnSpy</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj">
|
||||
<Project>{bb748e78-376f-429a-8d83-9a8946ec179f}</Project>
|
||||
<Name>dnSpy.Contracts.Logic</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\Libraries\dnlib\src\dnlib.csproj">
|
||||
<Project>{fdfc1237-143f-4919-8318-4926901f4639}</Project>
|
||||
<Name>dnlib</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Page Include="Themes\resourcedict.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
|
@ -85,5 +30,15 @@
|
|||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj" />
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj" />
|
||||
<ProjectReference Include="..\..\..\Libraries\dnlib\src\dnlib.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.VisualStudio.Text.UI.Wpf" Version="$(MSVSTextVersion)" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,35 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("Example2.Extension")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Example2.Extension")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2015")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
[assembly: Guid("4613c8a1-28dc-4586-9f9b-d201864cfe1a")]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"Microsoft.VisualStudio.Text.UI.Wpf": "15.5.27130"
|
||||
},
|
||||
"frameworks": {
|
||||
"net471": { }
|
||||
},
|
||||
"runtimes": {
|
||||
"win": { }
|
||||
}
|
||||
}
|
|
@ -1 +1 @@
|
|||
Subproject commit 54ac70c769d7b11fe1cf001d55cebfb34711b270
|
||||
Subproject commit 2065412a21a47d800b205026ecb3485fb0fa20a9
|
|
@ -1 +1 @@
|
|||
Subproject commit 2e259ebc0ac116725194a591fa2b63687ad78e58
|
||||
Subproject commit 8c11b82117d53b05a4d1dd2e3793fa07e4193fb8
|
|
@ -1,16 +1,3 @@
|
|||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
[assembly: AssemblyTitle("dnSpy.Decompiler.ILSpy.Core")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("dnSpy.Decompiler.ILSpy.Core")]
|
||||
[assembly: AssemblyCopyright("Copyright 2011-2014 AlphaSierraPapa for the SharpDevelop Team")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
||||
[assembly: InternalsVisibleTo("dnSpy.Decompiler.ILSpy.x, PublicKey=0024000004800000940000000602000000240000525341310004000001000100858d4f2519af95faeca8d359daa2078b20826765450f330daff3c5ec378adf9eb8e168eff8069ba51e15c1992d0d72b73129ed7a014f62863fa80a80dd9b010b8211c4d4c70ed26b9b65370007b0341685c98cc4cd2d16814d9581db82b382fb8ee838e1b8a2bd1c759e43ddda209e35cde530a7ba6a517787c04a3f283ea1b5")]
|
||||
|
|
|
@ -19,7 +19,7 @@ namespace dnSpy.Decompiler.ILSpy.Core.Properties {
|
|||
// class via a tool like ResGen or Visual Studio.
|
||||
// To add or remove a member, edit your .ResX file then rerun ResGen
|
||||
// with the /str option, or rebuild your VS project.
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
public class dnSpy_Decompiler_ILSpy_Core_Resources {
|
||||
|
|
|
@ -1,127 +1,39 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{CE9EC29D-8A2A-41D4-8F82-BF8B536ABC31}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>dnSpy.Decompiler.ILSpy.Core</RootNamespace>
|
||||
<AssemblyName>dnSpy.Decompiler.ILSpy.Core</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<Copyright>Copyright 2011-2014 AlphaSierraPapa for the SharpDevelop Team</Copyright>
|
||||
<Version>$(DnSpyAssemblyVersion)</Version>
|
||||
<InformationalVersion>$(DnSpyAssemblyInformationalVersion)</InformationalVersion>
|
||||
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\..\..\dnSpy\dnSpy\bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<DocumentationFile>..\..\..\dnSpy\dnSpy\bin\Debug\dnSpy.Decompiler.ILSpy.Core.xml</DocumentationFile>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>..\..\..\dnSpy\dnSpy\bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<DocumentationFile>..\..\..\dnSpy\dnSpy\bin\Release\dnSpy.Decompiler.ILSpy.Core.xml</DocumentationFile>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="CSharp\AssemblyInfoTransform.cs" />
|
||||
<Compile Include="CSharp\BuilderCache.cs" />
|
||||
<Compile Include="CSharp\BuilderState.cs" />
|
||||
<Compile Include="CSharp\CSharpDecompiler.cs" />
|
||||
<Compile Include="CSharp\DecompilePartialTransform.cs" />
|
||||
<Compile Include="CSharp\DecompileTypeMethodsTransform.cs" />
|
||||
<Compile Include="CSharp\ThreadSafeObjectPool.cs" />
|
||||
<Compile Include="ILAst\ILAstDecompiler.cs" />
|
||||
<Compile Include="IL\ILDecompiler.cs" />
|
||||
<Compile Include="IL\ILDecompilerUtils.cs" />
|
||||
<Compile Include="Properties\dnSpy.Decompiler.ILSpy.Core.Resources.Designer.cs">
|
||||
<Compile Update="Properties\dnSpy.Decompiler.ILSpy.Core.Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>dnSpy.Decompiler.ILSpy.Core.Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Settings\CSharpVBDecompilerSettings.cs" />
|
||||
<Compile Include="Settings\DecompilerSettingsService.cs" />
|
||||
<Compile Include="Settings\ILAstDecompilerSettings.cs" />
|
||||
<Compile Include="Settings\ILDecompilerSettings.cs" />
|
||||
<Compile Include="Settings\ILSettings.cs" />
|
||||
<Compile Include="Text\ContentTypesInternal.cs" />
|
||||
<Compile Include="VisualBasic\ILSpyEnvironmentProvider.cs" />
|
||||
<Compile Include="VisualBasic\VBDecompiler.cs" />
|
||||
<Compile Include="VisualBasic\VBTextOutputFormatter.cs" />
|
||||
<Compile Include="XmlDoc\AddXmlDocTransform.cs" />
|
||||
<Compile Include="XmlDoc\StringLineIterator.cs" />
|
||||
<Compile Include="XmlDoc\SubString.cs" />
|
||||
<Compile Include="XmlDoc\XmlDocLine.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="..\..\..\dnSpy\dnSpy\Properties\AssemblyInfo.Shared.cs">
|
||||
<Link>Properties\AssemblyInfo.Shared.cs</Link>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj">
|
||||
<Project>{bb748e78-376f-429a-8d83-9a8946ec179f}</Project>
|
||||
<Name>dnSpy.Contracts.Logic</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Decompiler\dnSpy.Decompiler.csproj">
|
||||
<Project>{9265e4ea-eb00-4cb6-8a9a-608871e24fd0}</Project>
|
||||
<Name>dnSpy.Decompiler</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\Libraries\dnlib\src\dnlib.csproj">
|
||||
<Project>{fdfc1237-143f-4919-8318-4926901f4639}</Project>
|
||||
<Name>dnlib</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler.csproj">
|
||||
<Project>{984cc812-9470-4a13-aff9-cc44068d666c}</Project>
|
||||
<Name>ICSharpCode.Decompiler</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\ICSharpCode.Decompiler\NRefactory.VB\ICSharpCode.NRefactory.VB\ICSharpCode.NRefactory.VB.csproj">
|
||||
<Project>{7b82b671-419f-45f4-b778-d9286f996efa}</Project>
|
||||
<Name>ICSharpCode.NRefactory.VB</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\NRefactory\ICSharpCode.NRefactory.CSharp\ICSharpCode.NRefactory.CSharp.csproj">
|
||||
<Project>{53dca265-3c3c-42f9-b647-f72ba678122b}</Project>
|
||||
<Name>ICSharpCode.NRefactory.CSharp</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\NRefactory\ICSharpCode.NRefactory\ICSharpCode.NRefactory.csproj">
|
||||
<Project>{3b2a5653-ec97-4001-bb9b-d90f1af2c371}</Project>
|
||||
<Name>ICSharpCode.NRefactory</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Properties\dnSpy.Decompiler.ILSpy.Core.Resources.resx">
|
||||
<EmbeddedResource Update="Properties\dnSpy.Decompiler.ILSpy.Core.Resources.resx">
|
||||
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>dnSpy.Decompiler.ILSpy.Core.Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Properties\dnSpy.Decompiler.ILSpy.Core.Resources.ru.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Decompiler.ILSpy.Core.Resources.zh-CN.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Decompiler.ILSpy.Core.Resources.pt-PT.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Decompiler.ILSpy.Core.Resources.de.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Decompiler.ILSpy.Core.Resources.es-ES.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Decompiler.ILSpy.Core.Resources.hu.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Decompiler.ILSpy.Core.Resources.fr.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Decompiler.ILSpy.Core.Resources.it.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Decompiler.ILSpy.Core.Resources.uk.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Decompiler.ILSpy.Core.Resources.fa.resx" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj" />
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Decompiler\dnSpy.Decompiler.csproj" />
|
||||
<ProjectReference Include="..\..\..\Libraries\dnlib\src\dnlib.csproj" />
|
||||
<ProjectReference Include="..\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler.csproj" />
|
||||
<ProjectReference Include="..\ICSharpCode.Decompiler\NRefactory.VB\ICSharpCode.NRefactory.VB\ICSharpCode.NRefactory.VB.csproj" />
|
||||
<ProjectReference Include="..\NRefactory\ICSharpCode.NRefactory.CSharp\ICSharpCode.NRefactory.CSharp.csproj" />
|
||||
<ProjectReference Include="..\NRefactory\ICSharpCode.NRefactory\ICSharpCode.NRefactory.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: AssemblyTitle("dnSpy.Decompiler.ILSpy.x")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("dnSpy.Decompiler.ILSpy.x")]
|
||||
[assembly: AssemblyCopyright("Copyright (C) 2014-2018 de4dot@gmail.com")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
|
@ -1,123 +1,57 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{D7FE873E-DF22-4F54-AEFA-BCF33AFD7E05}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>dnSpy.Decompiler.ILSpy</RootNamespace>
|
||||
<Copyright>$(DnSpyAssemblyCopyright)</Copyright>
|
||||
<Version>$(DnSpyAssemblyVersion)</Version>
|
||||
<InformationalVersion>$(DnSpyAssemblyInformationalVersion)</InformationalVersion>
|
||||
|
||||
<AssemblyName>dnSpy.Decompiler.ILSpy.x</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\..\..\dnSpy\dnSpy\bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<DocumentationFile>..\..\..\dnSpy\dnSpy\bin\Debug\dnSpy.Decompiler.ILSpy.x.xml</DocumentationFile>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>..\..\..\dnSpy\dnSpy\bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<DocumentationFile>..\..\..\dnSpy\dnSpy\bin\Release\dnSpy.Decompiler.ILSpy.x.xml</DocumentationFile>
|
||||
<OutputPath>..\..\..\dnSpy\dnSpy\bin\$(Configuration)\</OutputPath>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="PresentationCore" />
|
||||
<Reference Include="PresentationFramework" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.ComponentModel.Composition" />
|
||||
<Reference Include="WindowsBase" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="ContentTypeDefinitions.cs" />
|
||||
<Compile Include="CSharp\DecompilerCreator.cs" />
|
||||
<Compile Include="ILAst\DecompilerCreator.cs" />
|
||||
<Compile Include="IL\DecompilerCreator.cs" />
|
||||
<Compile Include="IL\SimpleILPrinter.cs" />
|
||||
<Compile Include="Properties\dnSpy.Decompiler.ILSpy.Resources.Designer.cs">
|
||||
<Compile Update="Properties\dnSpy.Decompiler.ILSpy.Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>dnSpy.Decompiler.ILSpy.Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Settings\CSharpDecompilerSettingsPage.cs" />
|
||||
<Compile Include="Settings\DecompilerAppSettingsModifiedListener.cs" />
|
||||
<Compile Include="Settings\DecompilerSettingsImpl.cs" />
|
||||
<Compile Include="Settings\DecompilerSettingsPageProvider.cs" />
|
||||
<Compile Include="Settings\DecompilerSettingsServiceImpl.cs" />
|
||||
<Compile Include="Settings\ILDecompilerSettingsPage.cs" />
|
||||
<Compile Include="Settings\ILSettingsImpl.cs" />
|
||||
<Compile Include="Settings\SettingsConstants.cs" />
|
||||
<Compile Include="TheExtension.cs" />
|
||||
<Compile Include="VisualBasic\DecompilerCreator.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj">
|
||||
<Project>{cb6f6372-9479-41e2-83a8-07854326bca8}</Project>
|
||||
<Name>dnSpy.Contracts.DnSpy</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj">
|
||||
<Project>{bb748e78-376f-429a-8d83-9a8946ec179f}</Project>
|
||||
<Name>dnSpy.Contracts.Logic</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\Libraries\dnlib\src\dnlib.csproj">
|
||||
<Project>{fdfc1237-143f-4919-8318-4926901f4639}</Project>
|
||||
<Name>dnlib</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\dnSpy.Decompiler.ILSpy.Core\dnSpy.Decompiler.ILSpy.Core.csproj">
|
||||
<Project>{ce9ec29d-8a2a-41d4-8f82-bf8b536abc31}</Project>
|
||||
<Name>dnSpy.Decompiler.ILSpy.Core</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler.csproj">
|
||||
<Project>{984cc812-9470-4a13-aff9-cc44068d666c}</Project>
|
||||
<Name>ICSharpCode.Decompiler</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Properties\dnSpy.Decompiler.ILSpy.Resources.resx">
|
||||
<EmbeddedResource Update="Properties\dnSpy.Decompiler.ILSpy.Resources.resx">
|
||||
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>dnSpy.Decompiler.ILSpy.Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Properties\dnSpy.Decompiler.ILSpy.Resources.ru.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Decompiler.ILSpy.Resources.zh-CN.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Decompiler.ILSpy.Resources.pt-PT.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Decompiler.ILSpy.Resources.de.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Decompiler.ILSpy.Resources.es-ES.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Decompiler.ILSpy.Resources.hu.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Decompiler.ILSpy.Resources.fr.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Decompiler.ILSpy.Resources.it.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Decompiler.ILSpy.Resources.uk.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Decompiler.ILSpy.Resources.fa.resx" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\..\..\dnSpy\dnSpy\Properties\AssemblyInfo.Shared.cs">
|
||||
<Link>Properties\AssemblyInfo.Shared.cs</Link>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="project.json" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Page Include="Themes\wpf.styles.templates.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj" />
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj" />
|
||||
<ProjectReference Include="..\..\..\Libraries\dnlib\src\dnlib.csproj" />
|
||||
<ProjectReference Include="..\dnSpy.Decompiler.ILSpy.Core\dnSpy.Decompiler.ILSpy.Core.csproj" />
|
||||
<ProjectReference Include="..\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.VisualStudio.Text.UI.Wpf" Version="$(MSVSTextVersion)" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"Microsoft.VisualStudio.Text.UI.Wpf": "15.5.27130"
|
||||
},
|
||||
"frameworks": {
|
||||
"net471": { }
|
||||
},
|
||||
"runtimes": {
|
||||
"win": { }
|
||||
}
|
||||
}
|
|
@ -1,14 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: AssemblyTitle("Analyzer")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Analyzer")]
|
||||
[assembly: AssemblyCopyright("Copyright 2011-2014 AlphaSierraPapa for the SharpDevelop Team")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
|
@ -19,7 +19,7 @@ namespace dnSpy.Analyzer.Properties {
|
|||
// class via a tool like ResGen or Visual Studio.
|
||||
// To add or remove a member, edit your .ResX file then rerun ResGen
|
||||
// with the /str option, or rebuild your VS project.
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
public class dnSpy_Analyzer_Resources {
|
||||
|
|
|
@ -1,138 +1,49 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{82E9DEC4-564F-42D5-8856-AA17D3962829}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>dnSpy.Analyzer</RootNamespace>
|
||||
<Copyright>Copyright 2011-2014 AlphaSierraPapa for the SharpDevelop Team</Copyright>
|
||||
<Version>$(DnSpyAssemblyVersion)</Version>
|
||||
<InformationalVersion>$(DnSpyAssemblyInformationalVersion)</InformationalVersion>
|
||||
|
||||
<AssemblyName>dnSpy.Analyzer.x</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\..\dnSpy\dnSpy\bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<NoWarn>1685</NoWarn>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>..\..\dnSpy\dnSpy\bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<OutputPath>..\..\dnSpy\dnSpy\bin\$(Configuration)\</OutputPath>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="PresentationCore" />
|
||||
<Reference Include="PresentationFramework" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.ComponentModel.Composition" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xaml" />
|
||||
<Reference Include="WindowsBase" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="AnalyzerService.cs" />
|
||||
<Compile Include="AnalyzerSettings.cs" />
|
||||
<Compile Include="AnalyzerToolWindowContent.cs" />
|
||||
<Compile Include="AnalyzerTreeNodeDataContext.cs" />
|
||||
<Compile Include="Commands.cs" />
|
||||
<Compile Include="ContentTypeDefinitions.cs" />
|
||||
<Compile Include="Properties\dnSpy.Analyzer.Resources.Designer.cs">
|
||||
<Compile Update="Properties\dnSpy.Analyzer.Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>dnSpy.Analyzer.Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="TheExtension.cs" />
|
||||
<Compile Include="TreeNodes\AnalyzerTreeNodeData.cs" />
|
||||
<Compile Include="TreeNodes\AssemblyNode.cs" />
|
||||
<Compile Include="TreeNodes\AsyncFetchChildrenHelper.cs" />
|
||||
<Compile Include="TreeNodes\AttributeAppliedToNode.cs" />
|
||||
<Compile Include="TreeNodes\Commands.cs" />
|
||||
<Compile Include="TreeNodes\EntityNode.cs" />
|
||||
<Compile Include="TreeNodes\EventAccessorNode.cs" />
|
||||
<Compile Include="TreeNodes\EventFiredByNode.cs" />
|
||||
<Compile Include="TreeNodes\EventNode.cs" />
|
||||
<Compile Include="TreeNodes\EventOverriddenNode.cs" />
|
||||
<Compile Include="TreeNodes\EventOverridesNode.cs" />
|
||||
<Compile Include="TreeNodes\FieldAccessNode.cs" />
|
||||
<Compile Include="TreeNodes\FieldNode.cs" />
|
||||
<Compile Include="TreeNodes\Helpers.cs" />
|
||||
<Compile Include="TreeNodes\IAnalyzerTreeNodeDataContext.cs" />
|
||||
<Compile Include="TreeNodes\IAsyncCancellable.cs" />
|
||||
<Compile Include="TreeNodes\InterfaceEventImplementedByNode.cs" />
|
||||
<Compile Include="TreeNodes\InterfaceMethodImplementedByNode.cs" />
|
||||
<Compile Include="TreeNodes\InterfacePropertyImplementedByNode.cs" />
|
||||
<Compile Include="TreeNodes\MethodNode.cs" />
|
||||
<Compile Include="TreeNodes\MethodOverriddenNode.cs" />
|
||||
<Compile Include="TreeNodes\MethodOverridesNode.cs" />
|
||||
<Compile Include="TreeNodes\MethodUsedByNode.cs" />
|
||||
<Compile Include="TreeNodes\MethodUsesNode.cs" />
|
||||
<Compile Include="TreeNodes\ModuleNode.cs" />
|
||||
<Compile Include="TreeNodes\PropertyAccessorNode.cs" />
|
||||
<Compile Include="TreeNodes\PropertyNode.cs" />
|
||||
<Compile Include="TreeNodes\PropertyOverriddenNode.cs" />
|
||||
<Compile Include="TreeNodes\PropertyOverridesNode.cs" />
|
||||
<Compile Include="TreeNodes\ScopedWhereUsedAnalyzer.cs" />
|
||||
<Compile Include="TreeNodes\SearchNode.cs" />
|
||||
<Compile Include="TreeNodes\SourceRef.cs" />
|
||||
<Compile Include="TreeNodes\TypeExposedByNode.cs" />
|
||||
<Compile Include="TreeNodes\TypeExtensionMethodsNode.cs" />
|
||||
<Compile Include="TreeNodes\TypeInstantiationsNode.cs" />
|
||||
<Compile Include="TreeNodes\TypeNode.cs" />
|
||||
<Compile Include="TreeNodes\TypeUsedByNode.cs" />
|
||||
<Compile Include="TreeNodes\VirtualMethodUsedByNode.cs" />
|
||||
<Compile Include="TreeTraversal.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\dnSpy\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj">
|
||||
<Project>{cb6f6372-9479-41e2-83a8-07854326bca8}</Project>
|
||||
<Name>dnSpy.Contracts.DnSpy</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj">
|
||||
<Project>{bb748e78-376f-429a-8d83-9a8946ec179f}</Project>
|
||||
<Name>dnSpy.Contracts.Logic</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\Libraries\dnlib\src\dnlib.csproj">
|
||||
<Project>{fdfc1237-143f-4919-8318-4926901f4639}</Project>
|
||||
<Name>dnlib</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\..\dnSpy\dnSpy\Properties\AssemblyInfo.Shared.cs">
|
||||
<Link>Properties\AssemblyInfo.Shared.cs</Link>
|
||||
</Compile>
|
||||
<EmbeddedResource Include="Properties\dnSpy.Analyzer.Resources.resx">
|
||||
<EmbeddedResource Update="Properties\dnSpy.Analyzer.Resources.resx">
|
||||
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>dnSpy.Analyzer.Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Properties\dnSpy.Analyzer.Resources.ru.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Analyzer.Resources.zh-CN.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Analyzer.Resources.pt-PT.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Analyzer.Resources.de.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Analyzer.Resources.es-ES.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Analyzer.Resources.hu.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Analyzer.Resources.fr.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Analyzer.Resources.it.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Analyzer.Resources.uk.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Analyzer.Resources.fa.resx" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Include="project.json" />
|
||||
<ProjectReference Include="..\..\dnSpy\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj" />
|
||||
<ProjectReference Include="..\..\dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj" />
|
||||
<ProjectReference Include="..\..\Libraries\dnlib\src\dnlib.csproj" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.VisualStudio.Text.UI.Wpf" Version="$(MSVSTextVersion)" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"Microsoft.VisualStudio.Text.UI.Wpf": "15.5.27130"
|
||||
},
|
||||
"frameworks": {
|
||||
"net471": { }
|
||||
},
|
||||
"runtimes": {
|
||||
"win": { }
|
||||
}
|
||||
}
|
|
@ -25,7 +25,7 @@ using System.Windows.Data;
|
|||
namespace dnSpy.AsmEditor.DnlibDialogs.Converters {
|
||||
/// <summary>
|
||||
/// Converts a <see cref="bool"/> to a <see cref="GridLength"/>. If the value is true, it's
|
||||
/// converted to a "1*" or a "<user-parameter>*" value, else to a 0px length. The user can set
|
||||
/// converted to a "1*" or a "<user-parameter>*" value, else to a 0px length. The user can set
|
||||
/// ConverterParameter to the desired value. 1 is default.
|
||||
/// </summary>
|
||||
sealed class BooleanToGridrowLengthConverter : IValueConverter {
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: AssemblyTitle("AsmEditor")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("AsmEditor")]
|
||||
[assembly: AssemblyCopyright("Copyright (C) 2014-2018 de4dot@gmail.com")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
|
@ -1,636 +1,234 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{87772B51-FA94-47A5-83F4-4E8E69369A2D}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>dnSpy.AsmEditor</RootNamespace>
|
||||
<Copyright>$(DnSpyAssemblyCopyright)</Copyright>
|
||||
<Version>$(DnSpyAssemblyVersion)</Version>
|
||||
<InformationalVersion>$(DnSpyAssemblyInformationalVersion)</InformationalVersion>
|
||||
|
||||
<AssemblyName>dnSpy.AsmEditor.x</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\..\dnSpy\dnSpy\bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>..\..\dnSpy\dnSpy\bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<OutputPath>..\..\dnSpy\dnSpy\bin\$(Configuration)\</OutputPath>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="PresentationCore" />
|
||||
<Reference Include="PresentationFramework" />
|
||||
<Reference Include="PresentationFramework.Aero" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.ComponentModel.Composition" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Drawing" />
|
||||
<Reference Include="System.Windows.Forms" />
|
||||
<Reference Include="System.Xaml" />
|
||||
<Reference Include="WindowsBase" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\dnSpy\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj">
|
||||
<Project>{cb6f6372-9479-41e2-83a8-07854326bca8}</Project>
|
||||
<Name>dnSpy.Contracts.DnSpy</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj">
|
||||
<Project>{BB748E78-376F-429A-8D83-9A8946EC179F}</Project>
|
||||
<Name>dnSpy.Contracts.Logic</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\Libraries\dnlib\src\dnlib.csproj">
|
||||
<Project>{fdfc1237-143f-4919-8318-4926901f4639}</Project>
|
||||
<Name>dnlib</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\dnSpy\dnSpy.Decompiler\dnSpy.Decompiler.csproj">
|
||||
<Project>{9265e4ea-eb00-4cb6-8a9a-608871e24fd0}</Project>
|
||||
<Name>dnSpy.Decompiler</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\dnSpy\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj" />
|
||||
<ProjectReference Include="..\..\dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj" />
|
||||
<ProjectReference Include="..\..\Libraries\dnlib\src\dnlib.csproj" />
|
||||
<ProjectReference Include="..\..\dnSpy\dnSpy.Decompiler\dnSpy.Decompiler.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="Assembly\AssemblyCommands.cs" />
|
||||
<Compile Include="Assembly\AssemblyOptions.cs" />
|
||||
<Compile Include="Assembly\AssemblyOptionsDlg.xaml.cs">
|
||||
<Compile Update="Assembly\AssemblyOptionsDlg.xaml.cs">
|
||||
<DependentUpon>AssemblyOptionsDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Assembly\AssemblyOptionsVM.cs" />
|
||||
<Compile Include="Commands\AppService.cs" />
|
||||
<Compile Include="Commands\AsmEditorContext.cs" />
|
||||
<Compile Include="Commands\ClipboardDataHolder.cs" />
|
||||
<Compile Include="Commands\CloseAllMissingFilesCommand.cs" />
|
||||
<Compile Include="Commands\CloseOldInMemoryModulesCommand.cs" />
|
||||
<Compile Include="Commands\CodeContextMenuHandler.cs" />
|
||||
<Compile Include="Commands\CodeContextMenuHandlerCommandProxy.cs" />
|
||||
<Compile Include="Commands\CommandUtils.cs" />
|
||||
<Compile Include="Commands\ContextMenuHandler.cs" />
|
||||
<Compile Include="Commands\DeletableNodes.cs" />
|
||||
<Compile Include="Commands\DeletedEventUpdater.cs" />
|
||||
<Compile Include="Commands\DeletedFieldUpdater.cs" />
|
||||
<Compile Include="Commands\DeletedMethodUpdater.cs" />
|
||||
<Compile Include="Commands\DeletedPropertyUpdater.cs" />
|
||||
<Compile Include="Commands\DeletedTypeUpdater.cs" />
|
||||
<Compile Include="Commands\DocumentsContextMenuHandler.cs" />
|
||||
<Compile Include="Commands\EditedEventUpdater.cs" />
|
||||
<Compile Include="Commands\EditedFieldUpdater.cs" />
|
||||
<Compile Include="Commands\EditedMethodUpdater.cs" />
|
||||
<Compile Include="Commands\EditedPropertyUpdater.cs" />
|
||||
<Compile Include="Commands\EditMenuHandler.cs" />
|
||||
<Compile Include="Commands\EditMenuHandlerCommandProxy.cs" />
|
||||
<Compile Include="Commands\EventNodeCreator.cs" />
|
||||
<Compile Include="Commands\FieldNodeCreator.cs" />
|
||||
<Compile Include="Commands\FileMenuHandler.cs" />
|
||||
<Compile Include="Commands\IIndexedItem.cs" />
|
||||
<Compile Include="Commands\IndexObservableCollection.cs" />
|
||||
<Compile Include="Commands\InstructionCommands.cs" />
|
||||
<Compile Include="Commands\ListBoxHelperBase.cs" />
|
||||
<Compile Include="Commands\MethodNodeCreator.cs" />
|
||||
<Compile Include="Commands\MyObservableCollection.cs" />
|
||||
<Compile Include="Commands\NamespaceNodeCreator.cs" />
|
||||
<Compile Include="Commands\NestedTypeNodeCreator.cs" />
|
||||
<Compile Include="Commands\PropertyNodeCreator.cs" />
|
||||
<Compile Include="Commands\RefFinder.cs" />
|
||||
<Compile Include="Commands\RootDocumentNodeCreator.cs" />
|
||||
<Compile Include="Commands\TypeNodeCreator.cs" />
|
||||
<Compile Include="Compiler\AddClassCommands.cs" />
|
||||
<Compile Include="Compiler\AddClassMembersCommands.cs" />
|
||||
<Compile Include="Compiler\AddClassVM.cs" />
|
||||
<Compile Include="Compiler\AddMembersCodeVM.cs" />
|
||||
<Compile Include="Compiler\AddUpdatedNodesHelper.cs" />
|
||||
<Compile Include="Compiler\AssemblyReferenceResolver.cs" />
|
||||
<Compile Include="Compiler\CodeEditorCommands.cs" />
|
||||
<Compile Include="Compiler\Commands.cs" />
|
||||
<Compile Include="Compiler\CompilerAppSettingsPageContainer.cs" />
|
||||
<Compile Include="Compiler\CompilerDiagnosticComparer.cs" />
|
||||
<Compile Include="Compiler\CompilerDiagnosticVM.cs" />
|
||||
<Compile Include="Compiler\EditAssemblyCommands.cs" />
|
||||
<Compile Include="Compiler\EditAssemblyVM.cs" />
|
||||
<Compile Include="Compiler\EditClassCommands.cs" />
|
||||
<Compile Include="Compiler\EditClassVM.cs" />
|
||||
<Compile Include="Compiler\EditCodeCommandBase.cs" />
|
||||
<Compile Include="Compiler\EditCodeCommandConstants.cs" />
|
||||
<Compile Include="Compiler\EditCodeCommandInfoProvider.cs" />
|
||||
<Compile Include="Compiler\EditCodeCommandTargetFilter.cs" />
|
||||
<Compile Include="Compiler\EditCodeDlg.xaml.cs">
|
||||
<Compile Update="Compiler\EditCodeDlg.xaml.cs">
|
||||
<DependentUpon>EditCodeDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Compiler\EditCodeIds.cs" />
|
||||
<Compile Include="Compiler\EditCodeIdsExtensions.cs" />
|
||||
<Compile Include="Compiler\EditCodeVM.cs" />
|
||||
<Compile Include="Compiler\EditCodeVMCreator.cs" />
|
||||
<Compile Include="Compiler\EditCodeVMOptions.cs" />
|
||||
<Compile Include="Compiler\EditMethodCodeVM.cs" />
|
||||
<Compile Include="Compiler\ExistingTypeNodeUpdater.cs" />
|
||||
<Compile Include="Compiler\ImportedType.cs" />
|
||||
<Compile Include="Compiler\ImportSigComparer.cs" />
|
||||
<Compile Include="Compiler\MDEditorPatcher.cs" />
|
||||
<Compile Include="Compiler\MDEditor\BlobHeapWriter.cs" />
|
||||
<Compile Include="Compiler\MDEditor\BlobMDHeap.cs" />
|
||||
<Compile Include="Compiler\MDEditor\DotNetMetadataSectionData.cs" />
|
||||
<Compile Include="Compiler\MDEditor\GuidHeapWriter.cs" />
|
||||
<Compile Include="Compiler\MDEditor\GuidMDHeap.cs" />
|
||||
<Compile Include="Compiler\MDEditor\ImageCor20HeaderSectionData.cs" />
|
||||
<Compile Include="Compiler\MDEditor\MDHeap.cs" />
|
||||
<Compile Include="Compiler\MDEditor\MDHeapWriter.cs" />
|
||||
<Compile Include="Compiler\MDEditor\MDWriter.cs" />
|
||||
<Compile Include="Compiler\MDEditor\MDWriterMemoryStream.cs" />
|
||||
<Compile Include="Compiler\MDEditor\MDWriterStream.cs" />
|
||||
<Compile Include="Compiler\MDEditor\MetadataEditor.cs" />
|
||||
<Compile Include="Compiler\MDEditor\PESectionData.cs" />
|
||||
<Compile Include="Compiler\MDEditor\RawRowColumnReader.cs" />
|
||||
<Compile Include="Compiler\MDEditor\SectionSizes.cs" />
|
||||
<Compile Include="Compiler\MDEditor\StringsHeapWriter.cs" />
|
||||
<Compile Include="Compiler\MDEditor\StringsMDHeap.cs" />
|
||||
<Compile Include="Compiler\MDEditor\StrongNameSignatureSectionData.cs" />
|
||||
<Compile Include="Compiler\MDEditor\TablesHeapWriter.cs" />
|
||||
<Compile Include="Compiler\MDEditor\TablesMDHeap.cs" />
|
||||
<Compile Include="Compiler\MDEditor\TableWriter.cs" />
|
||||
<Compile Include="Compiler\MDEditor\UnknownMDHeap.cs" />
|
||||
<Compile Include="Compiler\MDEditor\USMDHeap.cs" />
|
||||
<Compile Include="Compiler\MDPatcherUtils.cs" />
|
||||
<Compile Include="Compiler\MDSigPatcher.cs" />
|
||||
<Compile Include="Compiler\MergeWithAssemblyCommand.cs" />
|
||||
<Compile Include="Compiler\MetadataReferenceFinder.cs" />
|
||||
<Compile Include="Compiler\ModuleImporter.cs" />
|
||||
<Compile Include="Compiler\ModuleImporter.MemberLookup.cs" />
|
||||
<Compile Include="Compiler\ModuleImporterAssemblyResolver.cs" />
|
||||
<Compile Include="Compiler\ModulePatcher.cs" />
|
||||
<Compile Include="Compiler\NativeMemoryAllocator.cs" />
|
||||
<Compile Include="Compiler\PlatformHelper.cs" />
|
||||
<Compile Include="Compiler\RawModuleBytes.cs" />
|
||||
<Compile Include="Compiler\RawModuleBytesProvider.cs" />
|
||||
<Compile Include="Compiler\RecursionCounter.cs" />
|
||||
<Compile Include="Compiler\RemappedTypeTokens.cs" />
|
||||
<Compile Include="Compiler\ResourceNodeCreator.cs" />
|
||||
<Compile Include="Compiler\TIAHelper.cs" />
|
||||
<Compile Include="Converters\CilObjectConverter.cs" />
|
||||
<Compile Include="Converters\InstructionOperandTextBoxStyleConverter.cs" />
|
||||
<Compile Include="DnlibDialogs\CAArgumentVM.cs" />
|
||||
<Compile Include="DnlibDialogs\CANamedArgumentControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\CANamedArgumentControl.xaml.cs">
|
||||
<DependentUpon>CANamedArgumentControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\CANamedArgumentsControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\CANamedArgumentsControl.xaml.cs">
|
||||
<DependentUpon>CANamedArgumentsControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\CANamedArgumentsVM.cs" />
|
||||
<Compile Include="DnlibDialogs\CANamedArgumentVM.cs" />
|
||||
<Compile Include="DnlibDialogs\ConstantControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\ConstantControl.xaml.cs">
|
||||
<DependentUpon>ConstantControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\ConstantTypeControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\ConstantTypeControl.xaml.cs">
|
||||
<DependentUpon>ConstantTypeControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\ConstantTypeDlg.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\ConstantTypeDlg.xaml.cs">
|
||||
<DependentUpon>ConstantTypeDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\ConstantTypeVM.cs" />
|
||||
<Compile Include="DnlibDialogs\ConstantVM.cs" />
|
||||
<Compile Include="DnlibDialogs\Converters\BooleanToGridrowLengthConverter.cs" />
|
||||
<Compile Include="DnlibDialogs\Converters\BooleanToThicknessConverter.cs" />
|
||||
<Compile Include="DnlibDialogs\Converters\RadioButtonConverter.cs" />
|
||||
<Compile Include="DnlibDialogs\CreateTypeSigArrayControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\CreateTypeSigArrayControl.xaml.cs">
|
||||
<DependentUpon>CreateTypeSigArrayControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\CreateTypeSigArrayDlg.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\CreateTypeSigArrayDlg.xaml.cs">
|
||||
<DependentUpon>CreateTypeSigArrayDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\CreateTypeSigArrayVM.cs" />
|
||||
<Compile Include="DnlibDialogs\CustomAttributeControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\CustomAttributeControl.xaml.cs">
|
||||
<DependentUpon>CustomAttributeControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\CustomAttributeDlg.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\CustomAttributeDlg.xaml.cs">
|
||||
<DependentUpon>CustomAttributeDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\CustomAttributeOptions.cs" />
|
||||
<Compile Include="DnlibDialogs\CustomAttributesControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\CustomAttributesControl.xaml.cs">
|
||||
<DependentUpon>CustomAttributesControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\CustomAttributesVM.cs" />
|
||||
<Compile Include="DnlibDialogs\CustomAttributeVM.cs" />
|
||||
<Compile Include="DnlibDialogs\DeclSecuritiesControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\DeclSecuritiesControl.xaml.cs">
|
||||
<DependentUpon>DeclSecuritiesControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\DeclSecuritiesVM.cs" />
|
||||
<Compile Include="DnlibDialogs\DeclSecurityControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\DeclSecurityControl.xaml.cs">
|
||||
<DependentUpon>DeclSecurityControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\DeclSecurityDlg.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\DeclSecurityDlg.xaml.cs">
|
||||
<DependentUpon>DeclSecurityDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\DeclSecurityOptions.cs" />
|
||||
<Compile Include="DnlibDialogs\DeclSecurityVM.cs" />
|
||||
<Compile Include="DnlibDialogs\DecompilerVM.cs" />
|
||||
<Compile Include="DnlibDialogs\DlgUtils.cs" />
|
||||
<Compile Include="DnlibDialogs\EnumDataFieldVM.cs" />
|
||||
<Compile Include="DnlibDialogs\GenericParamControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\GenericParamControl.xaml.cs">
|
||||
<DependentUpon>GenericParamControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\GenericParamDlg.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\GenericParamDlg.xaml.cs">
|
||||
<DependentUpon>GenericParamDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\GenericParamOptions.cs" />
|
||||
<Compile Include="DnlibDialogs\GenericParamsControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\GenericParamsControl.xaml.cs">
|
||||
<DependentUpon>GenericParamsControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\GenericParamsVM.cs" />
|
||||
<Compile Include="DnlibDialogs\GenericParamVM.cs" />
|
||||
<Compile Include="DnlibDialogs\ImplMapControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\ImplMapControl.xaml.cs">
|
||||
<DependentUpon>ImplMapControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\ImplMapVM.cs" />
|
||||
<Compile Include="DnlibDialogs\ListVM.cs" />
|
||||
<Compile Include="DnlibDialogs\ListVMControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\ListVMControl.xaml.cs">
|
||||
<DependentUpon>ListVMControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\MarshalTypeControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\MarshalTypeControl.xaml.cs">
|
||||
<DependentUpon>MarshalTypeControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\MarshalTypeVM.cs" />
|
||||
<Compile Include="DnlibDialogs\MemberPickerDlg.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\MemberPickerDlg.xaml.cs">
|
||||
<DependentUpon>MemberPickerDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\MemberPickerVM.cs" />
|
||||
<Compile Include="DnlibDialogs\MemberRefControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\MemberRefControl.xaml.cs">
|
||||
<DependentUpon>MemberRefControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\MemberRefDlg.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\MemberRefDlg.xaml.cs">
|
||||
<DependentUpon>MemberRefDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\MemberRefOptions.cs" />
|
||||
<Compile Include="DnlibDialogs\MemberRefVM.cs" />
|
||||
<Compile Include="DnlibDialogs\MethodDefsControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\MethodDefsControl.xaml.cs">
|
||||
<DependentUpon>MethodDefsControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\MethodDefsVM.cs" />
|
||||
<Compile Include="DnlibDialogs\MethodDefVM.cs" />
|
||||
<Compile Include="DnlibDialogs\MethodOverrideOptions.cs" />
|
||||
<Compile Include="DnlibDialogs\MethodOverridesControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\MethodOverridesControl.xaml.cs">
|
||||
<DependentUpon>MethodOverridesControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\MethodOverridesVM.cs" />
|
||||
<Compile Include="DnlibDialogs\MethodOverrideVM.cs" />
|
||||
<Compile Include="DnlibDialogs\MethodSigCreatorControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\MethodSigCreatorControl.xaml.cs">
|
||||
<DependentUpon>MethodSigCreatorControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\MethodSigCreatorDlg.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\MethodSigCreatorDlg.xaml.cs">
|
||||
<DependentUpon>MethodSigCreatorDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\MethodSigCreatorOptions.cs" />
|
||||
<Compile Include="DnlibDialogs\MethodSigCreatorVM.cs" />
|
||||
<Compile Include="DnlibDialogs\MethodSpecControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\MethodSpecControl.xaml.cs">
|
||||
<DependentUpon>MethodSpecControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\MethodSpecDlg.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\MethodSpecDlg.xaml.cs">
|
||||
<DependentUpon>MethodSpecDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\MethodSpecOptions.cs" />
|
||||
<Compile Include="DnlibDialogs\MethodSpecVM.cs" />
|
||||
<Compile Include="DnlibDialogs\ModelUtils.cs" />
|
||||
<Compile Include="DnlibDialogs\Null.cs" />
|
||||
<Compile Include="DnlibDialogs\ObjectListDataFieldVM.cs" />
|
||||
<Compile Include="DnlibDialogs\ParamDefControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\ParamDefControl.xaml.cs">
|
||||
<DependentUpon>ParamDefControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\ParamDefDlg.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\ParamDefDlg.xaml.cs">
|
||||
<DependentUpon>ParamDefDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\ParamDefOptions.cs" />
|
||||
<Compile Include="DnlibDialogs\ParamDefsControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\ParamDefsControl.xaml.cs">
|
||||
<DependentUpon>ParamDefsControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\ParamDefsVM.cs" />
|
||||
<Compile Include="DnlibDialogs\ParamDefVM.cs" />
|
||||
<Compile Include="DnlibDialogs\SecurityAttributeControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\SecurityAttributeControl.xaml.cs">
|
||||
<DependentUpon>SecurityAttributeControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\SecurityAttributeDlg.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\SecurityAttributeDlg.xaml.cs">
|
||||
<DependentUpon>SecurityAttributeDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\SecurityAttributesControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\SecurityAttributesControl.xaml.cs">
|
||||
<DependentUpon>SecurityAttributesControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\SecurityAttributesVM.cs" />
|
||||
<Compile Include="DnlibDialogs\SecurityAttributeVM.cs" />
|
||||
<Compile Include="DnlibDialogs\TypeDefOrRefAndCAControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\TypeDefOrRefAndCAControl.xaml.cs">
|
||||
<DependentUpon>TypeDefOrRefAndCAControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\TypeDefOrRefAndCADlg.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\TypeDefOrRefAndCADlg.xaml.cs">
|
||||
<DependentUpon>TypeDefOrRefAndCADlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\TypeDefOrRefAndCAOptions.cs" />
|
||||
<Compile Include="DnlibDialogs\TypeDefOrRefAndCAsControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\TypeDefOrRefAndCAsControl.xaml.cs">
|
||||
<DependentUpon>TypeDefOrRefAndCAsControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\TypeDefOrRefAndCAsVM.cs" />
|
||||
<Compile Include="DnlibDialogs\TypeDefOrRefAndCAVM.cs" />
|
||||
<Compile Include="DnlibDialogs\TypeSigCreatorControl.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\TypeSigCreatorControl.xaml.cs">
|
||||
<DependentUpon>TypeSigCreatorControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\TypeSigCreatorDlg.xaml.cs">
|
||||
<Compile Update="DnlibDialogs\TypeSigCreatorDlg.xaml.cs">
|
||||
<DependentUpon>TypeSigCreatorDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DnlibDialogs\TypeSigCreatorOptions.cs" />
|
||||
<Compile Include="DnlibDialogs\TypeSigCreatorVM.cs" />
|
||||
<Compile Include="DnlibDialogs\TypeSigVM.cs" />
|
||||
<Compile Include="Event\EventDefCommands.cs" />
|
||||
<Compile Include="Event\EventDefOptions.cs" />
|
||||
<Compile Include="Event\EventOptionsDlg.xaml.cs">
|
||||
<Compile Update="Event\EventOptionsDlg.xaml.cs">
|
||||
<DependentUpon>EventOptionsDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Event\EventOptionsVM.cs" />
|
||||
<Compile Include="ExtensionMethods.cs" />
|
||||
<Compile Include="Field\FieldDefCommands.cs" />
|
||||
<Compile Include="Field\FieldDefOptions.cs" />
|
||||
<Compile Include="Field\FieldOptionsDlg.xaml.cs">
|
||||
<Compile Update="Field\FieldOptionsDlg.xaml.cs">
|
||||
<DependentUpon>FieldOptionsDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Field\FieldOptionsVM.cs" />
|
||||
<Compile Include="Hex\ClipboardUtils.cs" />
|
||||
<Compile Include="Hex\Commands.cs" />
|
||||
<Compile Include="Hex\HexAddressReferenceFileTabContentProvider.cs" />
|
||||
<Compile Include="Hex\HexBoxDocumentTabContent.cs" />
|
||||
<Compile Include="Hex\HexBufferFileBufferServiceListener.cs" />
|
||||
<Compile Include="Hex\HexBufferService.cs" />
|
||||
<Compile Include="Hex\HexBufferUndoRedo.cs" />
|
||||
<Compile Include="Hex\HexBufferWriterHelper.cs" />
|
||||
<Compile Include="Hex\HexTabSaver.cs" />
|
||||
<Compile Include="Hex\HexUndoableDocumentsProvider.cs" />
|
||||
<Compile Include="Hex\HexViewUIState.cs" />
|
||||
<Compile Include="Hex\HexViewUIStateSerializer.cs" />
|
||||
<Compile Include="Hex\InstructionUtils.cs" />
|
||||
<Compile Include="Hex\MDTableContextMenuCommands.cs" />
|
||||
<Compile Include="Hex\Nodes\HexDocumentTabContent.cs" />
|
||||
<Compile Include="Hex\Nodes\HexDocumentTreeNodeDataFinder.cs" />
|
||||
<Compile Include="Hex\Nodes\HexNode.cs" />
|
||||
<Compile Include="Hex\Nodes\ImageCor20HeaderNode.cs" />
|
||||
<Compile Include="Hex\Nodes\ImageDosHeaderNode.cs" />
|
||||
<Compile Include="Hex\Nodes\ImageFileHeaderNode.cs" />
|
||||
<Compile Include="Hex\Nodes\ImageOptionalHeader32Node.cs" />
|
||||
<Compile Include="Hex\Nodes\ImageOptionalHeader64Node.cs" />
|
||||
<Compile Include="Hex\Nodes\ImageSectionHeaderNode.cs" />
|
||||
<Compile Include="Hex\Nodes\MetadataTableNode.cs" />
|
||||
<Compile Include="Hex\Nodes\MetadataTableRecordNode.cs" />
|
||||
<Compile Include="Hex\Nodes\PENode.cs" />
|
||||
<Compile Include="Hex\Nodes\PETreeNodeDataProvider.cs" />
|
||||
<Compile Include="Hex\Nodes\StorageHeaderNode.cs" />
|
||||
<Compile Include="Hex\Nodes\StorageSignatureNode.cs" />
|
||||
<Compile Include="Hex\Nodes\StorageStreamNode.cs" />
|
||||
<Compile Include="Hex\Nodes\TablesStreamNode.cs" />
|
||||
<Compile Include="Hex\Nodes\TokenReferenceDocumentTabContentProvider.cs" />
|
||||
<Compile Include="Hex\NormalizedHexChangeCollectionExtensions.cs" />
|
||||
<Compile Include="Hex\PE\BufferToDocumentNodeService.cs" />
|
||||
<Compile Include="Hex\PE\HexField.cs" />
|
||||
<Compile Include="Hex\PE\HexFieldReference.cs" />
|
||||
<Compile Include="Hex\PE\HexFileStructureInfoProviderImpl.cs" />
|
||||
<Compile Include="Hex\PE\HexReferenceConverterImpl.cs" />
|
||||
<Compile Include="Hex\PE\HexVM.cs" />
|
||||
<Compile Include="Hex\PE\ImageCor20HeaderVM.cs" />
|
||||
<Compile Include="Hex\PE\ImageDosHeaderVM.cs" />
|
||||
<Compile Include="Hex\PE\ImageFileHeaderVM.cs" />
|
||||
<Compile Include="Hex\PE\ImageOptionalHeader32VM.cs" />
|
||||
<Compile Include="Hex\PE\ImageOptionalHeader64VM.cs" />
|
||||
<Compile Include="Hex\PE\ImageOptionalHeaderVM.cs" />
|
||||
<Compile Include="Hex\PE\ImageSectionHeaderVM.cs" />
|
||||
<Compile Include="Hex\PE\MetadataTableRecordVM.cs" />
|
||||
<Compile Include="Hex\PE\MetadataTableVM.cs" />
|
||||
<Compile Include="Hex\PE\PEStructureProvider.cs" />
|
||||
<Compile Include="Hex\PE\StorageHeaderVM.cs" />
|
||||
<Compile Include="Hex\PE\StorageSignatureVM.cs" />
|
||||
<Compile Include="Hex\PE\StorageStreamVM.cs" />
|
||||
<Compile Include="Hex\PE\TablesStreamVM.cs" />
|
||||
<Compile Include="Hex\PE\VirtualizedList.cs" />
|
||||
<Compile Include="Hex\TableSorter.cs" />
|
||||
<Compile Include="MethodBody\BodyCommandUtils.cs" />
|
||||
<Compile Include="MethodBody\BodyUtils.cs" />
|
||||
<Compile Include="MethodBody\CilBodyOptions.cs" />
|
||||
<Compile Include="MethodBody\CilBodyVM.cs" />
|
||||
<Compile Include="MethodBody\ComboBoxAttachedProps.cs" />
|
||||
<Compile Include="MethodBody\ContentTypeDefinitions.cs" />
|
||||
<Compile Include="MethodBody\ExceptionHandlerOptions.cs" />
|
||||
<Compile Include="MethodBody\ExceptionHandlersListHelper.cs" />
|
||||
<Compile Include="MethodBody\ExceptionHandlerVM.cs" />
|
||||
<Compile Include="MethodBody\FastClickButton.cs" />
|
||||
<Compile Include="MethodBody\IEditOperand.cs" />
|
||||
<Compile Include="MethodBody\InstructionOperandControl.cs" />
|
||||
<Compile Include="MethodBody\InstructionOperandVM.cs" />
|
||||
<Compile Include="MethodBody\InstructionOptions.cs" />
|
||||
<Compile Include="MethodBody\InstructionsListHelper.cs" />
|
||||
<Compile Include="MethodBody\InstructionVM.cs" />
|
||||
<Compile Include="MethodBody\LocalOptions.cs" />
|
||||
<Compile Include="MethodBody\LocalsListHelper.cs" />
|
||||
<Compile Include="MethodBody\LocalVM.cs" />
|
||||
<Compile Include="MethodBody\MethodBodyCommands.cs" />
|
||||
<Compile Include="MethodBody\MethodBodyControl.xaml.cs">
|
||||
<Compile Update="MethodBody\MethodBodyControl.xaml.cs">
|
||||
<DependentUpon>MethodBodyControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="MethodBody\MethodBodyDlg.xaml.cs">
|
||||
<Compile Update="MethodBody\MethodBodyDlg.xaml.cs">
|
||||
<DependentUpon>MethodBodyDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="MethodBody\MethodBodyOptions.cs" />
|
||||
<Compile Include="MethodBody\MethodBodyType.cs" />
|
||||
<Compile Include="MethodBody\MethodBodyVM.cs" />
|
||||
<Compile Include="MethodBody\NativeMethodBodyOptions.cs" />
|
||||
<Compile Include="MethodBody\NativeMethodBodyVM.cs" />
|
||||
<Compile Include="MethodBody\SwitchInstructionVM.cs" />
|
||||
<Compile Include="MethodBody\SwitchOperandControl.xaml.cs">
|
||||
<Compile Update="MethodBody\SwitchOperandControl.xaml.cs">
|
||||
<DependentUpon>SwitchOperandControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="MethodBody\SwitchOperandDlg.xaml.cs">
|
||||
<Compile Update="MethodBody\SwitchOperandDlg.xaml.cs">
|
||||
<DependentUpon>SwitchOperandDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="MethodBody\SwitchOperandsListHelper.cs" />
|
||||
<Compile Include="MethodBody\SwitchOperandVM.cs" />
|
||||
<Compile Include="Method\MethodDefCommands.cs" />
|
||||
<Compile Include="Method\MethodDefOptions.cs" />
|
||||
<Compile Include="Method\MethodOptionsDlg.xaml.cs">
|
||||
<Compile Update="Method\MethodOptionsDlg.xaml.cs">
|
||||
<DependentUpon>MethodOptionsDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Method\MethodOptionsVM.cs" />
|
||||
<Compile Include="Module\ClrVersion.cs" />
|
||||
<Compile Include="Module\ClrVersionValues.cs" />
|
||||
<Compile Include="Module\ModuleCommands.cs" />
|
||||
<Compile Include="Module\ModuleOptions.cs" />
|
||||
<Compile Include="Module\ModuleOptionsDlg.xaml.cs">
|
||||
<Compile Update="Module\ModuleOptionsDlg.xaml.cs">
|
||||
<DependentUpon>ModuleOptionsDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Module\ModuleOptionsVM.cs" />
|
||||
<Compile Include="Module\ModuleUtils.cs" />
|
||||
<Compile Include="Module\NetModuleOptions.cs" />
|
||||
<Compile Include="Module\NetModuleOptionsDlg.xaml.cs">
|
||||
<Compile Update="Module\NetModuleOptionsDlg.xaml.cs">
|
||||
<DependentUpon>NetModuleOptionsDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Module\NetModuleOptionsVM.cs" />
|
||||
<Compile Include="Namespace\NamespaceCommands.cs" />
|
||||
<Compile Include="Namespace\NamespaceDlg.xaml.cs">
|
||||
<Compile Update="Namespace\NamespaceDlg.xaml.cs">
|
||||
<DependentUpon>NamespaceDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Namespace\NamespaceVM.cs" />
|
||||
<Compile Include="Properties\dnSpy.AsmEditor.Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>dnSpy.AsmEditor.Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Property\PropertyDefCommands.cs" />
|
||||
<Compile Include="Property\PropertyDefOptions.cs" />
|
||||
<Compile Include="Property\PropertyOptionsDlg.xaml.cs">
|
||||
<Compile Update="Property\PropertyOptionsDlg.xaml.cs">
|
||||
<DependentUpon>PropertyOptionsDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Property\PropertyOptionsVM.cs" />
|
||||
<Compile Include="Resources\ImageListDlg.xaml.cs">
|
||||
<Compile Update="Resources\ImageListDlg.xaml.cs">
|
||||
<DependentUpon>ImageListDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Resources\ImageListStreamerControl.xaml.cs">
|
||||
<Compile Update="Resources\ImageListStreamerControl.xaml.cs">
|
||||
<DependentUpon>ImageListStreamerControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Resources\ImageListStreamerVM.cs" />
|
||||
<Compile Include="Resources\ImageListVM.cs" />
|
||||
<Compile Include="Resources\ImageResourceElementControl.xaml.cs">
|
||||
<Compile Update="Resources\ImageResourceElementControl.xaml.cs">
|
||||
<DependentUpon>ImageResourceElementControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Resources\ImageResourceElementDlg.xaml.cs">
|
||||
<Compile Update="Resources\ImageResourceElementDlg.xaml.cs">
|
||||
<DependentUpon>ImageResourceElementDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Resources\ImageResourceElementVM.cs" />
|
||||
<Compile Include="Resources\ImageVM.cs" />
|
||||
<Compile Include="Resources\ResourceCommands.cs" />
|
||||
<Compile Include="Resources\ResourceControl.xaml.cs">
|
||||
<Compile Update="Resources\ResourceControl.xaml.cs">
|
||||
<DependentUpon>ResourceControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Resources\ResourceDlg.xaml.cs">
|
||||
<Compile Update="Resources\ResourceDlg.xaml.cs">
|
||||
<DependentUpon>ResourceDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Resources\ResourceElementControl.xaml.cs">
|
||||
<Compile Update="Resources\ResourceElementControl.xaml.cs">
|
||||
<DependentUpon>ResourceElementControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Resources\ResourceElementDlg.xaml.cs">
|
||||
<Compile Update="Resources\ResourceElementDlg.xaml.cs">
|
||||
<DependentUpon>ResourceElementDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Resources\ResourceElementOptions.cs" />
|
||||
<Compile Include="Resources\ResourceElementVM.cs" />
|
||||
<Compile Include="Resources\ResourceOptions.cs" />
|
||||
<Compile Include="Resources\ResourceVM.cs" />
|
||||
<Compile Include="Resources\UserTypeVM.cs" />
|
||||
<Compile Include="SaveModule\CharacteristicsHelper.cs" />
|
||||
<Compile Include="SaveModule\DocumentSaver.cs" />
|
||||
<Compile Include="SaveModule\MmapDisabler.cs" />
|
||||
<Compile Include="SaveModule\ModuleSaver.cs" />
|
||||
<Compile Include="SaveModule\PathUtils.cs" />
|
||||
<Compile Include="SaveModule\SaveHexOptionsDlg.xaml.cs">
|
||||
<Compile Update="SaveModule\SaveHexOptionsDlg.xaml.cs">
|
||||
<DependentUpon>SaveHexOptionsDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SaveModule\SaveHexOptionsVM.cs" />
|
||||
<Compile Include="SaveModule\SaveModuleCommand.cs" />
|
||||
<Compile Include="SaveModule\SaveModuleOptionsDlg.xaml.cs">
|
||||
<Compile Update="SaveModule\SaveModuleOptionsDlg.xaml.cs">
|
||||
<DependentUpon>SaveModuleOptionsDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SaveModule\SaveModuleOptionsVM.cs" />
|
||||
<Compile Include="SaveModule\SaveModuleWindow.cs" />
|
||||
<Compile Include="SaveModule\SaveMultiModuleDlg.xaml.cs">
|
||||
<Compile Update="SaveModule\SaveMultiModuleDlg.xaml.cs">
|
||||
<DependentUpon>SaveMultiModuleDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="SaveModule\SaveMultiModuleVM.cs" />
|
||||
<Compile Include="SaveModule\SaveOptionsType.cs" />
|
||||
<Compile Include="SaveModule\SaveOptionsVM.cs" />
|
||||
<Compile Include="SaveModule\SaveSingleModuleDlg.xaml.cs">
|
||||
<Compile Update="SaveModule\SaveSingleModuleDlg.xaml.cs">
|
||||
<DependentUpon>SaveSingleModuleDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="TheExtension.cs" />
|
||||
<Compile Include="Themes\TextEditorResourceColorInitializer.cs" />
|
||||
<Compile Include="Types\TypeDefCommands.cs" />
|
||||
<Compile Include="Types\TypeDefOptions.cs" />
|
||||
<Compile Include="Types\TypeOptionsDlg.xaml.cs">
|
||||
<Compile Update="Types\TypeOptionsDlg.xaml.cs">
|
||||
<DependentUpon>TypeOptionsDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Types\TypeOptionsVM.cs" />
|
||||
<Compile Include="UndoRedo\Commands.cs" />
|
||||
<Compile Include="UndoRedo\DsDocumentUndoableDocumentsProvider.cs" />
|
||||
<Compile Include="UndoRedo\IUndoableDocumentsProvider.cs" />
|
||||
<Compile Include="UndoRedo\IUndoCommand.cs" />
|
||||
<Compile Include="UndoRedo\IUndoObject.cs" />
|
||||
<Compile Include="UndoRedo\ToolbarCommands.cs" />
|
||||
<Compile Include="UndoRedo\UndoCommandService.cs" />
|
||||
<Compile Include="UndoRedo\UndoCommandServiceEventArgs.cs" />
|
||||
<Compile Include="UndoRedo\UndoObject.cs" />
|
||||
<Compile Include="UndoRedo\UndoRedoDocumentListListener.cs" />
|
||||
<Compile Include="UndoRedo\UndoRedoMenuCommands.cs" />
|
||||
<Compile Include="UndoRedo\UndoRoutedCommands.cs" />
|
||||
<Compile Include="Utilities\UIUtils.cs" />
|
||||
<Compile Include="ViewHelpers\CreateConstantType.cs" />
|
||||
<Compile Include="ViewHelpers\CreateMethodPropertySig.cs" />
|
||||
<Compile Include="ViewHelpers\CreateTypeSigArray.cs" />
|
||||
<Compile Include="ViewHelpers\DnlibTypePicker.cs" />
|
||||
<Compile Include="ViewHelpers\EditCustomAttribute.cs" />
|
||||
<Compile Include="ViewHelpers\EditDeclSecurity.cs" />
|
||||
<Compile Include="ViewHelpers\EditGenericParam.cs" />
|
||||
<Compile Include="ViewHelpers\EditImage.cs" />
|
||||
<Compile Include="ViewHelpers\EditMemberRef.cs" />
|
||||
<Compile Include="ViewHelpers\EditMethodDef.cs" />
|
||||
<Compile Include="ViewHelpers\EditMethodOverride.cs" />
|
||||
<Compile Include="ViewHelpers\EditMethodSpec.cs" />
|
||||
<Compile Include="ViewHelpers\EditParamDef.cs" />
|
||||
<Compile Include="ViewHelpers\EditSecurityAttribute.cs" />
|
||||
<Compile Include="ViewHelpers\EditTypeDefOrRefAndCA.cs" />
|
||||
<Compile Include="ViewHelpers\ICreateConstantType.cs" />
|
||||
<Compile Include="ViewHelpers\ICreateMethodPropertySig.cs" />
|
||||
<Compile Include="ViewHelpers\ICreateTypeSigArray.cs" />
|
||||
<Compile Include="ViewHelpers\IDnlibTypePicker.cs" />
|
||||
<Compile Include="ViewHelpers\IEdit.cs" />
|
||||
<Compile Include="ViewHelpers\IOpenAssembly.cs" />
|
||||
<Compile Include="ViewHelpers\IOpenFile.cs" />
|
||||
<Compile Include="ViewHelpers\IOpenPublicKeyFile.cs" />
|
||||
<Compile Include="ViewHelpers\ISelectItems.cs" />
|
||||
<Compile Include="ViewHelpers\IShowWarningMessage.cs" />
|
||||
<Compile Include="ViewHelpers\ITypeSigCreator.cs" />
|
||||
<Compile Include="ViewHelpers\OpenAssembly.cs" />
|
||||
<Compile Include="ViewHelpers\OpenFile.cs" />
|
||||
<Compile Include="ViewHelpers\OpenPublicKeyFile.cs" />
|
||||
<Compile Include="ViewHelpers\ShowWarningMessage.cs" />
|
||||
<Compile Include="ViewHelpers\TypeSigCreator.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Properties\dnSpy.AsmEditor.Resources.resx">
|
||||
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>dnSpy.AsmEditor.Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Properties\dnSpy.AsmEditor.Resources.ru.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.AsmEditor.Resources.zh-CN.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.AsmEditor.Resources.pt-PT.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.AsmEditor.Resources.de.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.AsmEditor.Resources.es-ES.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.AsmEditor.Resources.hu.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.AsmEditor.Resources.fr.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.AsmEditor.Resources.it.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.AsmEditor.Resources.uk.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.AsmEditor.Resources.fa.resx" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\..\dnSpy\dnSpy\Properties\AssemblyInfo.Shared.cs">
|
||||
<Link>Properties\AssemblyInfo.Shared.cs</Link>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="project.json" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Page Include="Assembly\AssemblyOptionsDlg.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
|
@ -901,5 +499,24 @@
|
|||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Update="Properties\dnSpy.AsmEditor.Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>dnSpy.AsmEditor.Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Update="Properties\dnSpy.AsmEditor.Resources.resx">
|
||||
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>dnSpy.AsmEditor.Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.VisualStudio.Text.UI.Wpf" Version="$(MSVSTextVersion)" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"Microsoft.VisualStudio.Text.UI.Wpf": "15.5.27130"
|
||||
},
|
||||
"frameworks": {
|
||||
"net471": { }
|
||||
},
|
||||
"runtimes": {
|
||||
"win": { }
|
||||
}
|
||||
}
|
|
@ -29,7 +29,7 @@ using System.Text;
|
|||
namespace Test {
|
||||
internal class Program {
|
||||
static T GetMember<T>(Func<string, BindingFlags, T> func, string name) =>
|
||||
return func(name, BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance | BindingFlags.Static);
|
||||
func(name, BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance | BindingFlags.Static);
|
||||
|
||||
static Assembly GetDeclAssembly(Type type) {
|
||||
if (type.IsDefined(typeof(TypeForwardedFromAttribute), false)) {
|
||||
|
@ -275,4 +275,4 @@ namespace Test {
|
|||
return extract;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: AssemblyTitle("dnSpy.BamlDecompiler")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("dnSpy.BamlDecompiler")]
|
||||
[assembly: AssemblyCopyright("Copyright © Ki 2015")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
|
@ -1,183 +1,64 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{6D647069-5C94-4388-AC0C-E059D125AC51}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>dnSpy.BamlDecompiler</RootNamespace>
|
||||
<Copyright>Copyright © Ki 2015</Copyright>
|
||||
<Version>$(DnSpyAssemblyVersion)</Version>
|
||||
<InformationalVersion>$(DnSpyAssemblyInformationalVersion)</InformationalVersion>
|
||||
|
||||
<AssemblyName>dnSpy.BamlDecompiler.x</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\..\dnSpy\dnSpy\bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<NoWarn>1685</NoWarn>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>..\..\dnSpy\dnSpy\bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<OutputPath>..\..\dnSpy\dnSpy\bin\$(Configuration)\</OutputPath>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="PresentationCore" />
|
||||
<Reference Include="PresentationFramework" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.ComponentModel.Composition" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xaml" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="WindowsBase" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="Annotations.cs" />
|
||||
<Compile Include="BamlDecompiler.cs" />
|
||||
<Compile Include="BamlDisassembler.cs" />
|
||||
<Compile Include="BamlElement.cs" />
|
||||
<Compile Include="BamlResourceElementNode.cs" />
|
||||
<Compile Include="BamlResourceNodeProvider.cs" />
|
||||
<Compile Include="BamlSettings.cs" />
|
||||
<Compile Include="BamlToolTipProvider.cs" />
|
||||
<Compile Include="Baml\BamlContext.cs" />
|
||||
<Compile Include="Baml\BamlDocument.cs" />
|
||||
<Compile Include="Baml\BamlNode.cs" />
|
||||
<Compile Include="Baml\BamlReader.cs" />
|
||||
<Compile Include="Baml\BamlRecords.cs" />
|
||||
<Compile Include="Baml\BamlWriter.cs" />
|
||||
<Compile Include="Baml\KnownMembers.cs" />
|
||||
<Compile Include="Baml\KnownThings.cs" />
|
||||
<Compile Include="Baml\KnownThings.g.cs" />
|
||||
<Compile Include="ContentTypeDefinitions.cs" />
|
||||
<Compile Include="IHandlers.cs" />
|
||||
<Compile Include="IRewritePass.cs" />
|
||||
<Compile Include="MenuCommands.cs" />
|
||||
<Compile Include="RecursionCounter.cs" />
|
||||
<Compile Include="Rewrite\AttributeRewritePass.cs" />
|
||||
<Compile Include="Rewrite\ConnectionIdRewritePass.cs" />
|
||||
<Compile Include="Rewrite\DocumentRewritePass.cs" />
|
||||
<Compile Include="Rewrite\MarkupExtensionRewritePass.cs" />
|
||||
<Compile Include="Rewrite\XClassRewritePass.cs" />
|
||||
<Compile Include="TheExtension.cs" />
|
||||
<Compile Include="XamlContext.cs" />
|
||||
<Compile Include="XamlDecompiler.cs" />
|
||||
<Compile Include="XamlOutputCreator.cs" />
|
||||
<Compile Include="XamlOutputOptionsProvider.cs" />
|
||||
<Compile Include="Xaml\NamespaceMap.cs" />
|
||||
<Compile Include="Xaml\XamlExtension.cs" />
|
||||
<Compile Include="Xaml\XamlPathDeserializer.cs" />
|
||||
<Compile Include="Xaml\XamlProperty.cs" />
|
||||
<Compile Include="Xaml\XamlResourceKey.cs" />
|
||||
<Compile Include="Xaml\XamlType.cs" />
|
||||
<Compile Include="Xaml\XamlUtils.cs" />
|
||||
<Compile Include="XmlnsDictionary.cs" />
|
||||
<Compile Remove="Baml\KnownThings.gen.cs" />
|
||||
<None Include="Baml\KnownThings.gen.cs" />
|
||||
<Compile Include="Baml\KnownTypes.cs" />
|
||||
<Compile Include="Handlers\Blocks\ConstructorParametersHandler.cs" />
|
||||
<Compile Include="Handlers\Blocks\DocumentHandler.cs" />
|
||||
<Compile Include="Handlers\Blocks\ElementHandler.cs" />
|
||||
<Compile Include="Handlers\Blocks\KeyElementStartHandler.cs" />
|
||||
<Compile Include="Handlers\Blocks\PropertyArrayHandler.cs" />
|
||||
<Compile Include="Handlers\Blocks\PropertyComplexHandler.cs" />
|
||||
<Compile Include="Handlers\Blocks\PropertyDictionaryHandler.cs" />
|
||||
<Compile Include="Handlers\Blocks\PropertyListHandler.cs" />
|
||||
<Compile Include="Handlers\Records\AssemblyInfoHandler.cs" />
|
||||
<Compile Include="Handlers\Records\AttributeInfoHandler.cs" />
|
||||
<Compile Include="Handlers\Records\ConnectionIdHandler.cs" />
|
||||
<Compile Include="Handlers\Records\ConstructorParameterTypeHandler.cs" />
|
||||
<Compile Include="Handlers\Records\ContentPropertyHandler.cs" />
|
||||
<Compile Include="Handlers\Records\DefAttributeHandler.cs" />
|
||||
<Compile Include="Handlers\Records\DefAttributeKeyStringHandler.cs" />
|
||||
<Compile Include="Handlers\Records\DefAttributeKeyTypeHandler.cs" />
|
||||
<Compile Include="Handlers\Records\DeferableContentStartHandler.cs" />
|
||||
<Compile Include="Handlers\Records\LineNumberAndPositionHandler.cs" />
|
||||
<Compile Include="Handlers\Records\LinePositionHandler.cs" />
|
||||
<Compile Include="Handlers\Records\LiteralContentHandler.cs" />
|
||||
<Compile Include="Handlers\Records\OptimizedStaticResourceHandler.cs" />
|
||||
<Compile Include="Handlers\Records\PIMappingHandler.cs" />
|
||||
<Compile Include="Handlers\Records\PresentationOptionsAttributeHandler.cs" />
|
||||
<Compile Include="Handlers\Records\PropertyCustomHandler.cs" />
|
||||
<Compile Include="Handlers\Records\PropertyHandler.cs" />
|
||||
<Compile Include="Handlers\Records\PropertyTypeReferenceHandler.cs" />
|
||||
<Compile Include="Handlers\Records\PropertyWithConverterHandler.cs" />
|
||||
<Compile Include="Handlers\Records\PropertyWithExtensionHandler.cs" />
|
||||
<Compile Include="Handlers\Records\PropertyWithStaticResourceIdHandler.cs" />
|
||||
<Compile Include="Handlers\Records\TextHandler.cs" />
|
||||
<Compile Include="Handlers\Records\TextWithConverterHandler.cs" />
|
||||
<Compile Include="Handlers\Records\TypeInfoHandler.cs" />
|
||||
<Compile Include="Handlers\Records\XmlnsPropertyHandler.cs" />
|
||||
<Compile Include="Properties\dnSpy.BamlDecompiler.Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>dnSpy.BamlDecompiler.Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<None Include="project.json" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\dnSpy\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj">
|
||||
<Project>{cb6f6372-9479-41e2-83a8-07854326bca8}</Project>
|
||||
<Name>dnSpy.Contracts.DnSpy</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj">
|
||||
<Project>{BB748E78-376F-429A-8D83-9A8946EC179F}</Project>
|
||||
<Name>dnSpy.Contracts.Logic</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\Libraries\dnlib\src\dnlib.csproj">
|
||||
<Project>{fdfc1237-143f-4919-8318-4926901f4639}</Project>
|
||||
<Name>dnlib</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler.csproj">
|
||||
<Project>{984cc812-9470-4a13-aff9-cc44068d666c}</Project>
|
||||
<Name>ICSharpCode.Decompiler</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\dnSpy\dnSpy.Decompiler\dnSpy.Decompiler.csproj">
|
||||
<Project>{9265e4ea-eb00-4cb6-8a9a-608871e24fd0}</Project>
|
||||
<Name>dnSpy.Decompiler</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Properties\dnSpy.BamlDecompiler.Resources.resx">
|
||||
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>dnSpy.BamlDecompiler.Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Properties\dnSpy.BamlDecompiler.Resources.ru.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.BamlDecompiler.Resources.zh-CN.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.BamlDecompiler.Resources.pt-PT.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.BamlDecompiler.Resources.de.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.BamlDecompiler.Resources.es-ES.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.BamlDecompiler.Resources.hu.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.BamlDecompiler.Resources.fr.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.BamlDecompiler.Resources.it.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.BamlDecompiler.Resources.uk.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.BamlDecompiler.Resources.fa.resx" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\..\dnSpy\dnSpy\Properties\AssemblyInfo.Shared.cs">
|
||||
<Link>Properties\AssemblyInfo.Shared.cs</Link>
|
||||
</Compile>
|
||||
<ProjectReference Include="..\..\dnSpy\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj" />
|
||||
<ProjectReference Include="..\..\dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj" />
|
||||
<ProjectReference Include="..\..\Libraries\dnlib\src\dnlib.csproj" />
|
||||
<ProjectReference Include="..\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler.csproj" />
|
||||
<ProjectReference Include="..\..\dnSpy\dnSpy.Decompiler\dnSpy.Decompiler.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Page Include="BamlSettings.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Update="Properties\dnSpy.BamlDecompiler.Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>dnSpy.BamlDecompiler.Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Update="Properties\dnSpy.BamlDecompiler.Resources.resx">
|
||||
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>dnSpy.BamlDecompiler.Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.VisualStudio.Text.UI.Wpf" Version="$(MSVSTextVersion)" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"Microsoft.VisualStudio.Text.UI.Wpf": "15.5.27130"
|
||||
},
|
||||
"frameworks": {
|
||||
"net471": { }
|
||||
},
|
||||
"runtimes": {
|
||||
"win": { }
|
||||
}
|
||||
}
|
|
@ -1 +1 @@
|
|||
Subproject commit 5ae5126aedbeee98a0792cc0e7402d214677016e
|
||||
Subproject commit 89f0cee6db25a931e23771d7855dddb2a99bcc0e
|
|
@ -1 +1 @@
|
|||
Subproject commit 5820aaa6ae5979b8d5c3e28c918b4550403b5620
|
||||
Subproject commit f396640271839a246e79dcc085ddfc30b6d871ff
|
|
@ -1,14 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: AssemblyTitle(".NET Framework / .NET Core debug engine")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct(".NET Framework / .NET Core debug engine")]
|
||||
[assembly: AssemblyCopyright("Copyright (C) 2014-2018 de4dot@gmail.com")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
|
@ -1,315 +1,72 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{AD6EE4B9-7EE6-4FF0-869E-32DADCAA1E4A}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>dnSpy.Debugger.DotNet.CorDebug</RootNamespace>
|
||||
<Copyright>$(DnSpyAssemblyCopyright)</Copyright>
|
||||
<Version>$(DnSpyAssemblyVersion)</Version>
|
||||
<InformationalVersion>$(DnSpyAssemblyInformationalVersion)</InformationalVersion>
|
||||
|
||||
<AssemblyName>dnSpy.Debugger.DotNet.CorDebug.x</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\..\..\dnSpy\dnSpy\bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE;THREAD_SAFE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<OutputPath>..\..\..\dnSpy\dnSpy\bin\$(Configuration)\</OutputPath>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<NoWarn>1685</NoWarn>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>..\..\..\dnSpy\dnSpy\bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE;THREAD_SAFE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<NoWarn>1685</NoWarn>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="Breakpoints\DbgBreakpointLocationFormatterProviderImpl.cs" />
|
||||
<Compile Include="Breakpoints\TextEditor\DbgBreakpointGlyphFormatterImpl.cs" />
|
||||
<Compile Include="Breakpoints\TextEditor\DbgBreakpointGlyphTextMarkerLocationProviderImpl.cs" />
|
||||
<Compile Include="CallStack\DbgEngineStackWalkerImpl.cs" />
|
||||
<Compile Include="CallStack\ILDbgEngineStackFrame.cs" />
|
||||
<Compile Include="CallStack\NullDbgEngineStackWalker.cs" />
|
||||
<Compile Include="CallStack\StackFrameData.cs" />
|
||||
<Compile Include="CallStack\TextEditor\DbgStackFrameGlyphTextMarkerLocationInfoProviderImpl.cs" />
|
||||
<Compile Include="CallStack\TextEditor\DbgStackFrameTextViewMarkerImpl.cs" />
|
||||
<Compile Include="Code\BreakpointFormatterService.cs" />
|
||||
<Compile Include="Code\DbgDotNetNativeCodeLocationFactory.cs" />
|
||||
<Compile Include="Code\DbgDotNetNativeCodeLocationImpl.cs" />
|
||||
<Compile Include="Code\DbgDotNetNativeLocationImpl.cs" />
|
||||
<Compile Include="Code\ReferenceConverterImpl.cs" />
|
||||
<Compile Include="DAC\ClrDac.cs" />
|
||||
<Compile Include="DAC\ClrDacImpl.cs" />
|
||||
<Compile Include="DAC\ClrDacProvider.cs" />
|
||||
<Compile Include="DAC\ClrDacThreadInfo.cs" />
|
||||
<Compile Include="DAC\IClrDacDebugger.cs" />
|
||||
<Compile Include="DAC\NullClrDac.cs" />
|
||||
<Compile Include="Dialogs\AttachToProcess\DebuggableProcesses.cs" />
|
||||
<Compile Include="Dialogs\AttachToProcess\DotNetCoreAttachProgramOptionsProvider.cs" />
|
||||
<Compile Include="Dialogs\AttachToProcess\DotNetFrameworkAttachProgramOptionsProvider.cs" />
|
||||
<Compile Include="Dialogs\DebugProgram\BreakProcessKindsUtils.cs" />
|
||||
<Compile Include="Dialogs\DebugProgram\DotNetCoreStartDebuggingOptionsPage.cs" />
|
||||
<Compile Include="Dialogs\DebugProgram\DotNetFrameworkStartDebuggingOptionsPage.cs" />
|
||||
<Compile Include="Dialogs\DebugProgram\DotNetStartDebuggingOptionsPage.cs" />
|
||||
<Compile Include="Dialogs\DebugProgram\StartDebuggingOptionsPageProviderImpl.cs" />
|
||||
<Compile Include="dndbg\COM\CorDebug.cs" />
|
||||
<Compile Include="dndbg\COM\MetaData.cs" />
|
||||
<Compile Include="dndbg\COM\MetaHost.cs" />
|
||||
<Compile Include="dndbg\DotNet\CorAssemblyDef.cs" />
|
||||
<Compile Include="dndbg\DotNet\CorAssemblyRef.cs" />
|
||||
<Compile Include="dndbg\DotNet\CorDeclSecurity.cs" />
|
||||
<Compile Include="dndbg\DotNet\CorEventDef.cs" />
|
||||
<Compile Include="dndbg\DotNet\CorExportedType.cs" />
|
||||
<Compile Include="dndbg\DotNet\CorFieldDef.cs" />
|
||||
<Compile Include="dndbg\DotNet\CorFileDef.cs" />
|
||||
<Compile Include="dndbg\DotNet\CorGenericParam.cs" />
|
||||
<Compile Include="dndbg\DotNet\CorGenericParamConstraint.cs" />
|
||||
<Compile Include="dndbg\DotNet\CorInterfaceImpl.cs" />
|
||||
<Compile Include="dndbg\DotNet\CorManifestResource.cs" />
|
||||
<Compile Include="dndbg\DotNet\CorMemberRef.cs" />
|
||||
<Compile Include="dndbg\DotNet\CorMethodDef.cs" />
|
||||
<Compile Include="dndbg\DotNet\CorMethodSpec.cs" />
|
||||
<Compile Include="dndbg\DotNet\CorModuleDef.cs" />
|
||||
<Compile Include="dndbg\DotNet\CorModuleRef.cs" />
|
||||
<Compile Include="dndbg\DotNet\CorParamDef.cs" />
|
||||
<Compile Include="dndbg\DotNet\CorPropertyDef.cs" />
|
||||
<Compile Include="dndbg\DotNet\CorStandAloneSig.cs" />
|
||||
<Compile Include="dndbg\DotNet\CorTypeDef.cs" />
|
||||
<Compile Include="dndbg\DotNet\CorTypeRef.cs" />
|
||||
<Compile Include="dndbg\DotNet\CorTypeSpec.cs" />
|
||||
<Compile Include="dndbg\DotNet\ICorMDTokenProvider.cs" />
|
||||
<Compile Include="dndbg\DotNet\ICorModuleDefHelper.cs" />
|
||||
<Compile Include="dndbg\DotNet\IProcessReader.cs" />
|
||||
<Compile Include="dndbg\DotNet\ProcessBinaryReader.cs" />
|
||||
<Compile Include="dndbg\DotNet\TypeUpdatedEventArgs.cs" />
|
||||
<Compile Include="dndbg\DotNet\Utils.cs" />
|
||||
<Compile Include="dndbg\Engine\AttachProcessOptions.cs" />
|
||||
<Compile Include="dndbg\Engine\BreakpointList.cs" />
|
||||
<Compile Include="dndbg\Engine\BreakProcessHelper.cs" />
|
||||
<Compile Include="dndbg\Engine\BreakProcessKind.cs" />
|
||||
<Compile Include="dndbg\Engine\COMObject.cs" />
|
||||
<Compile Include="dndbg\Engine\CorAppDomain.cs" />
|
||||
<Compile Include="dndbg\Engine\CorAssembly.cs" />
|
||||
<Compile Include="dndbg\Engine\CorChain.cs" />
|
||||
<Compile Include="dndbg\Engine\CorClass.cs" />
|
||||
<Compile Include="dndbg\Engine\CorCode.cs" />
|
||||
<Compile Include="dndbg\Engine\CordbgErrors.cs" />
|
||||
<Compile Include="dndbg\Engine\CorDebugExtensions.cs" />
|
||||
<Compile Include="dndbg\Engine\CorDebugManagedCallback.cs" />
|
||||
<Compile Include="dndbg\Engine\CoreCLRHelper.cs" />
|
||||
<Compile Include="dndbg\Engine\CorEval.cs" />
|
||||
<Compile Include="dndbg\Engine\CorFrame.cs" />
|
||||
<Compile Include="dndbg\Engine\CorFunction.cs" />
|
||||
<Compile Include="dndbg\Engine\CorFunctionBreakpoint.cs" />
|
||||
<Compile Include="dndbg\Engine\CorMDA.cs" />
|
||||
<Compile Include="dndbg\Engine\CorModule.cs" />
|
||||
<Compile Include="dndbg\Engine\CorModuleDefHelper.cs" />
|
||||
<Compile Include="dndbg\Engine\CorProcess.cs" />
|
||||
<Compile Include="dndbg\Engine\CorProcessReader.cs" />
|
||||
<Compile Include="dndbg\Engine\CorStepper.cs" />
|
||||
<Compile Include="dndbg\Engine\CorThread.cs" />
|
||||
<Compile Include="dndbg\Engine\CorType.cs" />
|
||||
<Compile Include="dndbg\Engine\CorValue.cs" />
|
||||
<Compile Include="dndbg\Engine\DebugCallbackEventArgs.cs" />
|
||||
<Compile Include="dndbg\Engine\DebugEventBreakpointList.cs" />
|
||||
<Compile Include="dndbg\Engine\DebuggeeVersionDetector.cs" />
|
||||
<Compile Include="dndbg\Engine\DebuggerCollection.cs" />
|
||||
<Compile Include="dndbg\Engine\DebuggerEventArgs.cs" />
|
||||
<Compile Include="dndbg\Engine\DebuggerPauseState.cs" />
|
||||
<Compile Include="dndbg\Engine\DebuggerProcessState.cs" />
|
||||
<Compile Include="dndbg\Engine\DebuggerState.cs" />
|
||||
<Compile Include="dndbg\Engine\DebugOptions.cs" />
|
||||
<Compile Include="dndbg\Engine\DebugProcessOptions.cs" />
|
||||
<Compile Include="dndbg\Engine\DnAnyDebugEventBreakpoint.cs" />
|
||||
<Compile Include="dndbg\Engine\DnAppDomain.cs" />
|
||||
<Compile Include="dndbg\Engine\DnAssembly.cs" />
|
||||
<Compile Include="dndbg\Engine\DnBreakpoint.cs" />
|
||||
<Compile Include="dndbg\Engine\DnCodeBreakpoint.cs" />
|
||||
<Compile Include="dndbg\Engine\DnDebugEventBreakpoint.cs" />
|
||||
<Compile Include="dndbg\Engine\DnDebugger.cs" />
|
||||
<Compile Include="dndbg\Engine\DnEval.cs" />
|
||||
<Compile Include="dndbg\Engine\DnILCodeBreakpoint.cs" />
|
||||
<Compile Include="dndbg\Engine\DnModule.cs" />
|
||||
<Compile Include="dndbg\Engine\DnModuleId.cs" />
|
||||
<Compile Include="dndbg\Engine\DnNativeCodeBreakpoint.cs" />
|
||||
<Compile Include="dndbg\Engine\DnProcess.cs" />
|
||||
<Compile Include="dndbg\Engine\DnThread.cs" />
|
||||
<Compile Include="dndbg\Engine\ECallManager.cs" />
|
||||
<Compile Include="dndbg\Engine\IDebugMessageDispatcher.cs" />
|
||||
<Compile Include="dndbg\Engine\IdentifierEscaper.cs" />
|
||||
<Compile Include="dndbg\Engine\ILFrameIP.cs" />
|
||||
<Compile Include="dndbg\Engine\MDAPI.cs" />
|
||||
<Compile Include="dndbg\Engine\NativeMethods.cs" />
|
||||
<Compile Include="dndbg\Engine\PreventManagedDebuggerDetection.cs" />
|
||||
<Compile Include="dndbg\Engine\ProcessCreationFlags.cs" />
|
||||
<Compile Include="dndbg\Engine\ProcessDataStream.cs" />
|
||||
<Compile Include="dndbg\Engine\StepRange.cs" />
|
||||
<Compile Include="dndbg\Engine\Win32EnvironmentStringBuilder.cs" />
|
||||
<Compile Include="Impl\Attach\CorDebugAttachToProgramOptions.cs" />
|
||||
<Compile Include="Impl\Attach\DotNetCoreAttachToProgramOptions.cs" />
|
||||
<Compile Include="Impl\Attach\DotNetFrameworkAttachToProgramOptions.cs" />
|
||||
<Compile Include="Impl\CorDebugTypeCreator.cs" />
|
||||
<Compile Include="Impl\DbgCorDebugInternalAppDomainImpl.cs" />
|
||||
<Compile Include="Impl\DbgCorDebugInternalModuleImpl.cs" />
|
||||
<Compile Include="Impl\DbgEngineImpl.Breakpoints.cs" />
|
||||
<Compile Include="Impl\DbgEngineImpl.cs" />
|
||||
<Compile Include="Impl\DbgEngineImpl.Evaluation.cs" />
|
||||
<Compile Include="Impl\DbgEngineImpl.ModuleDef.cs" />
|
||||
<Compile Include="Impl\DbgEngineImpl.Threads.cs" />
|
||||
<Compile Include="Impl\DbgEngineImplDependencies.cs" />
|
||||
<Compile Include="Impl\DbgEngineProviderImpl.cs" />
|
||||
<Compile Include="Impl\DbgModuleMemoryRefreshedNotifierImpl.cs" />
|
||||
<Compile Include="Impl\DebuggerThread.cs" />
|
||||
<Compile Include="Impl\DebugOptionsProviderImpl.cs" />
|
||||
<Compile Include="Impl\DmdDispatcherImpl.cs" />
|
||||
<Compile Include="Impl\DmdDynamicModuleHelperImpl.cs" />
|
||||
<Compile Include="Impl\DnDebuggerObjectHolder.cs" />
|
||||
<Compile Include="Impl\DnlibAssemblyResolverImpl.cs" />
|
||||
<Compile Include="Impl\DnModuleIdExtensions.cs" />
|
||||
<Compile Include="Impl\DnThreadUtils.cs" />
|
||||
<Compile Include="Impl\DotNetCoreDbgEngineImpl.cs" />
|
||||
<Compile Include="Impl\DotNetCoreDbgProcessStarter.cs" />
|
||||
<Compile Include="Impl\DotNetFrameworkDbgEngineImpl.cs" />
|
||||
<Compile Include="Impl\Evaluation\CordbgErrorHelper.cs" />
|
||||
<Compile Include="Impl\Evaluation\CreateCorValueResult.cs" />
|
||||
<Compile Include="Impl\Evaluation\DbgCorDebugInternalRuntimeImpl.cs" />
|
||||
<Compile Include="Impl\Evaluation\DbgCorValueHolder.cs" />
|
||||
<Compile Include="Impl\Evaluation\DbgDotNetDispatcherExtensions.cs" />
|
||||
<Compile Include="Impl\Evaluation\DbgDotNetDispatcherImpl.cs" />
|
||||
<Compile Include="Impl\Evaluation\DbgDotNetEngineObjectIdFactoryImpl.cs" />
|
||||
<Compile Include="Impl\Evaluation\DbgDotNetObjectIdImpl.cs" />
|
||||
<Compile Include="Impl\Evaluation\DbgDotNetRawValueFactory.cs" />
|
||||
<Compile Include="Impl\Evaluation\DbgDotNetValueImpl.cs" />
|
||||
<Compile Include="Impl\Evaluation\DmdEvaluatorImpl.cs" />
|
||||
<Compile Include="Impl\Evaluation\EvalArgumentConverter.cs" />
|
||||
<Compile Include="Impl\Evaluation\Hooks\ClassHook.cs" />
|
||||
<Compile Include="Impl\Evaluation\Hooks\ClassHookInfo.cs" />
|
||||
<Compile Include="Impl\Evaluation\Hooks\ClassHookProvider.cs" />
|
||||
<Compile Include="Impl\Evaluation\Hooks\CorDebugValueConverterImpl.cs" />
|
||||
<Compile Include="Impl\Evaluation\Hooks\ICorDebugRuntime.cs" />
|
||||
<Compile Include="Impl\Evaluation\Hooks\System_String.cs" />
|
||||
<Compile Include="Impl\Evaluation\NullableTypeUtils.cs" />
|
||||
<Compile Include="Impl\Evaluation\SyntheticValues.cs" />
|
||||
<Compile Include="Impl\ExceptionUtils.cs" />
|
||||
<Compile Include="Impl\ModuleCreator.cs" />
|
||||
<Compile Include="Impl\ModuleIdExtensions.cs" />
|
||||
<Compile Include="Impl\PathUtils.cs" />
|
||||
<Compile Include="Impl\ReflectionTypeCreator.cs" />
|
||||
<Compile Include="Impl\ThreadProperties.cs" />
|
||||
<Compile Include="Impl\WpfDebugMessageDispatcher.cs" />
|
||||
<Compile Include="Metadata\DbgAssemblyInfoProviderImpl.cs" />
|
||||
<Compile Include="Metadata\DbgDynamicModuleProviderImpl.cs" />
|
||||
<Compile Include="Metadata\DbgModuleIdProviderImpl.cs" />
|
||||
<Compile Include="Metadata\LastValidRids.cs" />
|
||||
<Compile Include="Native\NativeMethods.cs" />
|
||||
<Compile Include="Properties\dnSpy.Debugger.DotNet.CorDebug.Resources.Designer.cs">
|
||||
<Compile Update="Properties\dnSpy.Debugger.DotNet.CorDebug.Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>dnSpy.Debugger.DotNet.CorDebug.Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Steppers\DbgDotNetEngineStepperImpl.cs" />
|
||||
<Compile Include="Steppers\DbgDotNetStepperBreakpointImpl.cs" />
|
||||
<Compile Include="TheExtension.cs" />
|
||||
<Compile Include="UI\UIDispatcher.cs" />
|
||||
<Compile Include="Utilities\DotNetAssemblyUtilities.cs" />
|
||||
<Compile Include="Utilities\DotNetCoreHelpers.cs" />
|
||||
<Compile Include="Utilities\PortableExecutableFileHelpers.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Debugger.DotNet.CorDebug\dnSpy.Contracts.Debugger.DotNet.CorDebug.csproj">
|
||||
<Project>{a6d1aa27-abdd-4832-b4d0-94e4b175c98f}</Project>
|
||||
<Name>dnSpy.Contracts.Debugger.DotNet.CorDebug</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Debugger.DotNet\dnSpy.Contracts.Debugger.DotNet.csproj">
|
||||
<Project>{2376E072-101F-4900-8770-79C6DFFBD0FB}</Project>
|
||||
<Name>dnSpy.Contracts.Debugger.DotNet</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Debugger\dnSpy.Contracts.Debugger.csproj">
|
||||
<Project>{c92217e8-a68e-4f8d-9b98-d7328e89daf1}</Project>
|
||||
<Name>dnSpy.Contracts.Debugger</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj">
|
||||
<Project>{cb6f6372-9479-41e2-83a8-07854326bca8}</Project>
|
||||
<Name>dnSpy.Contracts.DnSpy</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj">
|
||||
<Project>{BB748E78-376F-429A-8D83-9A8946EC179F}</Project>
|
||||
<Name>dnSpy.Contracts.Logic</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\clrmd\src\Microsoft.Diagnostics.Runtime\Microsoft.Diagnostics.Runtime.csproj">
|
||||
<Project>{a82126ca-23aa-41f1-8586-a5938d44d0a7}</Project>
|
||||
<Name>Microsoft.Diagnostics.Runtime</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\Libraries\dnlib\src\dnlib.csproj">
|
||||
<Project>{fdfc1237-143f-4919-8318-4926901f4639}</Project>
|
||||
<Name>dnlib</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\dnSpy.Debugger.DotNet.Metadata\dnSpy.Debugger.DotNet.Metadata.csproj">
|
||||
<Project>{fcd8913d-85a0-479e-9689-70fea52c6dcb}</Project>
|
||||
<Name>dnSpy.Debugger.DotNet.Metadata</Name>
|
||||
</ProjectReference>
|
||||
<EmbeddedResource Update="Properties\dnSpy.Debugger.DotNet.CorDebug.Resources.resx">
|
||||
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>dnSpy.Debugger.DotNet.CorDebug.Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Debugger.DotNet.CorDebug\dnSpy.Contracts.Debugger.DotNet.CorDebug.csproj" />
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Debugger.DotNet\dnSpy.Contracts.Debugger.DotNet.csproj" />
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Debugger\dnSpy.Contracts.Debugger.csproj" />
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj" />
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj" />
|
||||
<ProjectReference Include="..\clrmd\src\Microsoft.Diagnostics.Runtime\Microsoft.Diagnostics.Runtime.csproj" />
|
||||
<ProjectReference Include="..\..\..\Libraries\dnlib\src\dnlib.csproj" />
|
||||
<ProjectReference Include="..\dnSpy.Debugger.DotNet.Metadata\dnSpy.Debugger.DotNet.Metadata.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="PresentationCore" />
|
||||
<Reference Include="PresentationFramework" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.ComponentModel.Composition" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xaml" />
|
||||
<Reference Include="WindowsBase" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.CorDebug.Resources.resx">
|
||||
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>dnSpy.Debugger.DotNet.CorDebug.Resources.Designer.cs</LastGenOutput>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.CorDebug.Resources.ru.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.CorDebug.Resources.zh-CN.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.CorDebug.Resources.pt-PT.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.CorDebug.Resources.de.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.CorDebug.Resources.es-ES.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.CorDebug.Resources.hu.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.CorDebug.Resources.fr.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.CorDebug.Resources.it.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.CorDebug.Resources.uk.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.CorDebug.Resources.fa.resx" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\..\..\dnSpy\dnSpy\Properties\AssemblyInfo.Shared.cs">
|
||||
<Link>Properties\AssemblyInfo.Shared.cs</Link>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Page Include="Themes\wpf.styles.templates.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Include="project.json" />
|
||||
<NetCoreDebugFilesX86 Include="..\netcorefiles\x86\**" />
|
||||
<NetCoreDebugFilesX64 Include="..\netcorefiles\x64\**" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<PropertyGroup>
|
||||
<PostBuildEvent>if not exist "$(TargetDir)debug\core\x86" mkdir "$(TargetDir)debug\core\x86"
|
||||
if not exist "$(TargetDir)debug\core\x64" mkdir "$(TargetDir)debug\core\x64"
|
||||
copy $(ProjectDir)..\netcorefiles\x86\dbgshim.dll "$(TargetDir)debug\core\x86" > NUL
|
||||
copy $(ProjectDir)..\netcorefiles\x64\dbgshim.dll "$(TargetDir)debug\core\x64" > NUL
|
||||
</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
|
||||
<Target Name="CopyNetCoreDebugFiles" AfterTargets="AfterBuild">
|
||||
<Copy SourceFiles="@(NetCoreDebugFilesX86)" DestinationFolder="$(TargetDir)debug\core\x86" />
|
||||
<Copy SourceFiles="@(NetCoreDebugFilesX64)" DestinationFolder="$(TargetDir)debug\core\x64" />
|
||||
</Target>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.VisualStudio.Text.UI.Wpf" Version="$(MSVSTextVersion)" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -107,7 +107,7 @@ namespace dndbg.DotNet {
|
|||
uint lastTriedTypeRid;
|
||||
|
||||
/// <summary>
|
||||
/// Needs to be set to true after <see cref="LoadEverything()"/> has been called if this
|
||||
/// Needs to be set to true after <see cref="LoadEverything(ICancellationToken)"/> has been called if this
|
||||
/// instance can be accessed from other threads other than the main thread.
|
||||
/// </summary>
|
||||
public bool DisableMDAPICalls {
|
||||
|
@ -1084,7 +1084,7 @@ namespace dndbg.DotNet {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Update <see cref="ExportedTypes"/> with new <see cref="ExportedType"/>s that have been
|
||||
/// Update <see cref="ModuleDef.ExportedTypes"/> with new <see cref="ExportedType"/>s that have been
|
||||
/// added to the dynamic assembly. Returns true if at least one new <see cref="ExportedType"/>
|
||||
/// was added to the list.
|
||||
/// </summary>
|
||||
|
@ -1118,7 +1118,7 @@ namespace dndbg.DotNet {
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// Update <see cref="Resources"/> with new <see cref="Resource"/>s that have been
|
||||
/// Update <see cref="ModuleDef.Resources"/> with new <see cref="Resource"/>s that have been
|
||||
/// added to the dynamic assembly. Returns true if at least one new <see cref="Resource"/>
|
||||
/// was added to the list.
|
||||
/// </summary>
|
||||
|
|
|
@ -49,12 +49,12 @@ namespace dndbg.DotNet {
|
|||
string Filename { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Returns true if <paramref name="module"/> is the manifest (first) module
|
||||
/// Returns true if module is the manifest (first) module
|
||||
/// </summary>
|
||||
bool IsManifestModule { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Creates a method body reader. If <paramref name="module"/> is a dynamic module, the
|
||||
/// Creates a method body reader. If module is a dynamic module, the
|
||||
/// RVA in the method record is an RVA relative to the dynamic module which is not known
|
||||
/// by the module. The address can be found in
|
||||
/// <c>CorModule.GetFunctionFromToken(mdToken).ILCode.Address</c>
|
||||
|
|
|
@ -22,7 +22,7 @@ using System;
|
|||
namespace dndbg.Engine {
|
||||
interface IDebugMessageDispatcher {
|
||||
/// <summary>
|
||||
/// Executes <see cref="action"/> on the engine thread.
|
||||
/// Executes <paramref name="action"/> on the engine thread.
|
||||
/// </summary>
|
||||
/// <param name="action">Code to execute on the dndbg thread</param>
|
||||
void ExecuteAsync(Action action);
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"Microsoft.VisualStudio.Text.UI.Wpf": "15.5.27130"
|
||||
},
|
||||
"frameworks": {
|
||||
"net471": { }
|
||||
},
|
||||
"runtimes": {
|
||||
"win": { }
|
||||
}
|
||||
}
|
|
@ -1,14 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: AssemblyTitle(".NET IL Interpreter")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct(".NET IL Interpreter")]
|
||||
[assembly: AssemblyCopyright("Copyright (C) 2014-2018 de4dot@gmail.com")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
|
@ -1,77 +1,26 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{B89E5078-FF71-4FB2-B99F-A790BD94AFD7}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>dnSpy.Debugger.DotNet.Interpreter</RootNamespace>
|
||||
<AssemblyName>dnSpy.Debugger.DotNet.Interpreter</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<Copyright>$(DnSpyAssemblyCopyright)</Copyright>
|
||||
<Version>$(DnSpyAssemblyVersion)</Version>
|
||||
<InformationalVersion>$(DnSpyAssemblyInformationalVersion)</InformationalVersion>
|
||||
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>bin\Debug\dnSpy.Debugger.DotNet.Interpreter.XML</DocumentationFile>
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>bin\Release\dnSpy.Debugger.DotNet.Interpreter.XML</DocumentationFile>
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="DebuggerRuntime.cs" />
|
||||
<Compile Include="ILValue.cs" />
|
||||
<Compile Include="ILVM.cs" />
|
||||
<Compile Include="ILVMFactory.cs" />
|
||||
<Compile Include="Impl\DebuggerILInterpreter.cs" />
|
||||
<Compile Include="Impl\ILVMImpl.cs" />
|
||||
<Compile Include="Impl\OpCodes.cs" />
|
||||
<Compile Include="InterpreterException.cs" />
|
||||
<Compile Include="InterpreterMessageException.cs" />
|
||||
<Compile Include="InterpreterThrownExceptionException.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<None Include="Tests\FakeDebuggerRuntime.cs" />
|
||||
<None Include="Tests\InterpreterTest.cs" />
|
||||
<Compile Remove="Tests\*" />
|
||||
<None Include="Tests\*" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="..\..\..\dnSpy\dnSpy\Properties\AssemblyInfo.Shared.cs">
|
||||
<Link>Properties\AssemblyInfo.Shared.cs</Link>
|
||||
</Compile>
|
||||
<ProjectReference Include="..\dnSpy.Debugger.DotNet.Metadata\dnSpy.Debugger.DotNet.Metadata.csproj" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Tests\dbgintrptest.il" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\dnSpy.Debugger.DotNet.Metadata\dnSpy.Debugger.DotNet.Metadata.csproj">
|
||||
<Project>{fcd8913d-85a0-479e-9689-70fea52c6dcb}</Project>
|
||||
<Name>dnSpy.Debugger.DotNet.Metadata</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: AssemblyTitle(".NET Debugger Metadata")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct(".NET Debugger Metadata")]
|
||||
[assembly: AssemblyCopyright("Copyright (C) 2014-2018 de4dot@gmail.com")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
|
@ -1,220 +1,26 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{FCD8913D-85A0-479E-9689-70FEA52C6DCB}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>dnSpy.Debugger.DotNet.Metadata</RootNamespace>
|
||||
<AssemblyName>dnSpy.Debugger.DotNet.Metadata</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<Copyright>$(DnSpyAssemblyCopyright)</Copyright>
|
||||
<Version>$(DnSpyAssemblyVersion)</Version>
|
||||
<InformationalVersion>$(DnSpyAssemblyInformationalVersion)</InformationalVersion>
|
||||
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>bin\Debug\dnSpy.Debugger.DotNet.Metadata.XML</DocumentationFile>
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>bin\Release\dnSpy.Debugger.DotNet.Metadata.XML</DocumentationFile>
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="AssemblyHasher.cs" />
|
||||
<Compile Include="CustomAttributesHelper.cs" />
|
||||
<Compile Include="DmdAppDomain.cs" />
|
||||
<Compile Include="DmdAssembly.cs" />
|
||||
<Compile Include="DmdAssemblyContentType.cs" />
|
||||
<Compile Include="DmdAssemblyHashAlgorithm.cs" />
|
||||
<Compile Include="DmdAssemblyName.cs" />
|
||||
<Compile Include="DmdAssemblyNameFlags.cs" />
|
||||
<Compile Include="DmdAssemblyNameFormatter.cs" />
|
||||
<Compile Include="DmdBindingFlags.cs" />
|
||||
<Compile Include="DmdCallingConventions.cs" />
|
||||
<Compile Include="DmdConstructorInfo.cs" />
|
||||
<Compile Include="DmdCustomAttributeData.cs" />
|
||||
<Compile Include="DmdCustomModifier.cs" />
|
||||
<Compile Include="DmdCustomModifierUtilities.cs" />
|
||||
<Compile Include="DmdDataStream.cs" />
|
||||
<Compile Include="DmdDispatcher.cs" />
|
||||
<Compile Include="DmdDynamicModuleHelper.cs" />
|
||||
<Compile Include="DmdEvaluator.cs" />
|
||||
<Compile Include="DmdEventAttributes.cs" />
|
||||
<Compile Include="DmdEventInfo.cs" />
|
||||
<Compile Include="DmdFieldAttributes.cs" />
|
||||
<Compile Include="DmdFieldInfo.cs" />
|
||||
<Compile Include="DmdGenericParameterAttributes.cs" />
|
||||
<Compile Include="DmdGetAccessorOptions.cs" />
|
||||
<Compile Include="DmdImageFileMachine.cs" />
|
||||
<Compile Include="DmdImplMap.cs" />
|
||||
<Compile Include="DmdLazyMetadataBytes.cs" />
|
||||
<Compile Include="DmdMarshalType.cs" />
|
||||
<Compile Include="DmdMemberFormatter.cs" />
|
||||
<Compile Include="DmdMemberInfo.cs" />
|
||||
<Compile Include="DmdMemberInfoEqualityComparer.cs" />
|
||||
<Compile Include="DmdMemberTypes.cs" />
|
||||
<Compile Include="DmdMethodAttributes.cs" />
|
||||
<Compile Include="DmdMethodBase.cs" />
|
||||
<Compile Include="DmdMethodBody.cs" />
|
||||
<Compile Include="DmdMethodImplAttributes.cs" />
|
||||
<Compile Include="DmdMethodInfo.cs" />
|
||||
<Compile Include="DmdMethodSignature.cs" />
|
||||
<Compile Include="DmdModule.cs" />
|
||||
<Compile Include="DmdObject.cs" />
|
||||
<Compile Include="DmdParameterAttributes.cs" />
|
||||
<Compile Include="DmdParameterInfo.cs" />
|
||||
<Compile Include="DmdPortableExecutableKinds.cs" />
|
||||
<Compile Include="DmdProcessorArchitecture.cs" />
|
||||
<Compile Include="DmdPropertyAttributes.cs" />
|
||||
<Compile Include="DmdPropertyInfo.cs" />
|
||||
<Compile Include="DmdReadOnlyAssemblyName.cs" />
|
||||
<Compile Include="DmdRuntime.cs" />
|
||||
<Compile Include="DmdRuntimeFactory.cs" />
|
||||
<Compile Include="DmdSigComparer.cs" />
|
||||
<Compile Include="DmdSignatureCallingConvention.cs" />
|
||||
<Compile Include="DmdType.CanCastTo.cs" />
|
||||
<Compile Include="DmdType.cs" />
|
||||
<Compile Include="DmdTypeAttributes.cs" />
|
||||
<Compile Include="DmdTypeName.cs" />
|
||||
<Compile Include="DmdTypeScope.cs" />
|
||||
<Compile Include="DmdTypeSignatureKind.cs" />
|
||||
<Compile Include="DmdWellKnownType.cs" />
|
||||
<Compile Include="DmdWellKnownTypeUtils.cs" />
|
||||
<Compile Include="HexUtils.cs" />
|
||||
<Compile Include="IDmdAssemblyName.cs" />
|
||||
<Compile Include="IDmdCustomAttributeProvider.cs" />
|
||||
<Compile Include="IDmdSecurityAttributeProvider.cs" />
|
||||
<Compile Include="Impl\AccessorUtils.cs" />
|
||||
<Compile Include="Impl\AssemblyNameEqualityComparer.cs" />
|
||||
<Compile Include="Impl\COMD\DmdComMetadataReader.cs" />
|
||||
<Compile Include="Impl\COMD\DmdConstructorDefCOMD.cs" />
|
||||
<Compile Include="Impl\COMD\DmdEventDefCOMD.cs" />
|
||||
<Compile Include="Impl\COMD\DmdExportedTypeCOMD.cs" />
|
||||
<Compile Include="Impl\COMD\DmdFieldDefCOMD.cs" />
|
||||
<Compile Include="Impl\COMD\DmdGenericParameterTypeCOMD.cs" />
|
||||
<Compile Include="Impl\COMD\DmdMethodDefCOMD.cs" />
|
||||
<Compile Include="Impl\COMD\DmdMethodRefCOMD.cs" />
|
||||
<Compile Include="Impl\COMD\DmdParameterDefCOMD.cs" />
|
||||
<Compile Include="Impl\COMD\DmdPointerDataStream.cs" />
|
||||
<Compile Include="Impl\COMD\DmdPropertyDefCOMD.cs" />
|
||||
<Compile Include="Impl\COMD\DmdTypeDefCOMD.cs" />
|
||||
<Compile Include="Impl\COMD\DmdTypeRefCOMD.cs" />
|
||||
<Compile Include="Impl\COMD\LazyList.cs" />
|
||||
<Compile Include="Impl\COMD\MDAPI.cs" />
|
||||
<Compile Include="Impl\COMD\MetaData.cs" />
|
||||
<Compile Include="Impl\DmdAppDomainImpl.cs" />
|
||||
<Compile Include="Impl\DmdAssemblyImpl.cs" />
|
||||
<Compile Include="Impl\DmdByRefType.cs" />
|
||||
<Compile Include="Impl\DmdConstructorDef.cs" />
|
||||
<Compile Include="Impl\DmdConstructorInfoBase.cs" />
|
||||
<Compile Include="Impl\DmdConstructorRef.cs" />
|
||||
<Compile Include="Impl\DmdCreatedConstructorDef.cs" />
|
||||
<Compile Include="Impl\DmdCreatedGenericParameterType.cs" />
|
||||
<Compile Include="Impl\DmdCreatedMethodDef.cs" />
|
||||
<Compile Include="Impl\DmdCreatedParameterDef.cs" />
|
||||
<Compile Include="Impl\DmdCreatedParameterInfo.cs" />
|
||||
<Compile Include="Impl\DmdCustomAttributeReader.cs" />
|
||||
<Compile Include="Impl\DmdDeclSecurityReader.cs" />
|
||||
<Compile Include="Impl\DmdEventDef.cs" />
|
||||
<Compile Include="Impl\DmdFieldDef.cs" />
|
||||
<Compile Include="Impl\DmdFieldInfoBase.cs" />
|
||||
<Compile Include="Impl\DmdFieldRef.cs" />
|
||||
<Compile Include="Impl\DmdFunctionPointerType.cs" />
|
||||
<Compile Include="Impl\DmdGenericInstanceType.cs" />
|
||||
<Compile Include="Impl\DmdGenericInstanceTypeRef.cs" />
|
||||
<Compile Include="Impl\DmdGenericParameterType.cs" />
|
||||
<Compile Include="Impl\DmdGenericParameterTypeImpl.cs" />
|
||||
<Compile Include="Impl\DmdLazyMetadataReader.cs" />
|
||||
<Compile Include="Impl\DmdMarshalBlobReader.cs" />
|
||||
<Compile Include="Impl\DmdMDArrayType.cs" />
|
||||
<Compile Include="Impl\DmdMemberInfoComparer.cs" />
|
||||
<Compile Include="Impl\DmdMetadataReader.cs" />
|
||||
<Compile Include="Impl\DmdMetadataReaderBase.cs" />
|
||||
<Compile Include="Impl\DmdMethodBodyImpl.cs" />
|
||||
<Compile Include="Impl\DmdMethodBodyReader.cs" />
|
||||
<Compile Include="Impl\DmdMethodDef.cs" />
|
||||
<Compile Include="Impl\DmdMethodInfoBase.cs" />
|
||||
<Compile Include="Impl\DmdMethodRef.cs" />
|
||||
<Compile Include="Impl\DmdMethodSpec.cs" />
|
||||
<Compile Include="Impl\DmdMethodSpecRef.cs" />
|
||||
<Compile Include="Impl\DmdModuleImpl.cs" />
|
||||
<Compile Include="Impl\DmdNullGlobalType.cs" />
|
||||
<Compile Include="Impl\DmdNullMetadataReader.cs" />
|
||||
<Compile Include="Impl\DmdParameterDef.cs" />
|
||||
<Compile Include="Impl\DmdParameterInfoBase.cs" />
|
||||
<Compile Include="Impl\DmdParsedTypeRef.cs" />
|
||||
<Compile Include="Impl\DmdPointerType.cs" />
|
||||
<Compile Include="Impl\DmdPropertyDef.cs" />
|
||||
<Compile Include="Impl\DmdPropertyParameter.cs" />
|
||||
<Compile Include="Impl\DmdRuntimeImpl.cs" />
|
||||
<Compile Include="Impl\DmdSignatureReader.cs" />
|
||||
<Compile Include="Impl\DmdSZArrayType.cs" />
|
||||
<Compile Include="Impl\DmdTypeBase.cs" />
|
||||
<Compile Include="Impl\DmdTypeDef.cs" />
|
||||
<Compile Include="Impl\DmdTypeNameParser.cs" />
|
||||
<Compile Include="Impl\DmdTypeRef.cs" />
|
||||
<Compile Include="Impl\DmdTypeUtilities.cs" />
|
||||
<Compile Include="Impl\MD\DmdConstructorDefMD.cs" />
|
||||
<Compile Include="Impl\MD\DmdDataStreamImpl.cs" />
|
||||
<Compile Include="Impl\MD\DmdEcma335MetadataReader.cs" />
|
||||
<Compile Include="Impl\MD\DmdEventDefMD.cs" />
|
||||
<Compile Include="Impl\MD\DmdExportedTypeMD.cs" />
|
||||
<Compile Include="Impl\MD\DmdFieldDefMD.cs" />
|
||||
<Compile Include="Impl\MD\DmdGenericParameterTypeMD.cs" />
|
||||
<Compile Include="Impl\MD\DmdMethodDefMD.cs" />
|
||||
<Compile Include="Impl\MD\DmdMethodRefMD.cs" />
|
||||
<Compile Include="Impl\MD\DmdParameterDefMD.cs" />
|
||||
<Compile Include="Impl\MD\DmdPropertyDefMD.cs" />
|
||||
<Compile Include="Impl\MD\DmdTypeDefMD.cs" />
|
||||
<Compile Include="Impl\MD\DmdTypeRefMD.cs" />
|
||||
<Compile Include="Impl\MD\LazyList.cs" />
|
||||
<Compile Include="Impl\MD\MetadataConstantUtilities.cs" />
|
||||
<Compile Remove="Impl\ReflectionTests.cs" />
|
||||
<None Include="Impl\ReflectionTests.cs" />
|
||||
<Compile Include="Impl\WellKnownMemberResolver.cs" />
|
||||
<Compile Include="ListCache.cs" />
|
||||
<Compile Include="MemberNotFoundException.cs" />
|
||||
<Compile Include="ObjectCache.cs" />
|
||||
<Compile Include="ObjectPools.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="ReadOnlyCollectionHelpers.cs" />
|
||||
<Compile Include="ResolveException.cs" />
|
||||
<Compile Include="TIAHelper.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="..\..\..\dnSpy\dnSpy\Properties\AssemblyInfo.Shared.cs">
|
||||
<Link>Properties\AssemblyInfo.Shared.cs</Link>
|
||||
</Compile>
|
||||
<ProjectReference Include="..\..\..\Libraries\dnlib\src\dnlib.csproj" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\Libraries\dnlib\src\dnlib.csproj">
|
||||
<Project>{fdfc1237-143f-4919-8318-4926901f4639}</Project>
|
||||
<Name>dnlib</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -127,7 +127,7 @@ namespace dnSpy.Debugger.DotNet.Mono.Impl {
|
|||
|
||||
interface IDebugMessageDispatcher {
|
||||
/// <summary>
|
||||
/// Executes <see cref="action"/> on the engine thread.
|
||||
/// Executes <paramref name="action"/> on the engine thread.
|
||||
/// </summary>
|
||||
/// <param name="action">Code to execute on the dndbg thread</param>
|
||||
void ExecuteAsync(Action action);
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: AssemblyTitle("Mono / Unity debug engine")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Mono / Unity debug engine")]
|
||||
[assembly: AssemblyCopyright("Copyright (C) 2014-2018 de4dot@gmail.com")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
|
@ -1,199 +1,58 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{083DE7BE-F315-4C7A-98B8-775428D4D20D}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>dnSpy.Debugger.DotNet.Mono</RootNamespace>
|
||||
<Copyright>$(DnSpyAssemblyCopyright)</Copyright>
|
||||
<Version>$(DnSpyAssemblyVersion)</Version>
|
||||
<InformationalVersion>$(DnSpyAssemblyInformationalVersion)</InformationalVersion>
|
||||
|
||||
<AssemblyName>dnSpy.Debugger.DotNet.Mono.x</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\..\..\dnSpy\dnSpy\bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<OutputPath>..\..\..\dnSpy\dnSpy\bin\$(Configuration)\</OutputPath>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<NoWarn>1685</NoWarn>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>..\..\..\dnSpy\dnSpy\bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<NoWarn>1685</NoWarn>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="CallStack\DbgEngineStackWalkerImpl.cs" />
|
||||
<Compile Include="CallStack\ILDbgEngineStackFrame.cs" />
|
||||
<Compile Include="CallStack\NullDbgEngineStackWalker.cs" />
|
||||
<Compile Include="CallStack\StackFrameData.cs" />
|
||||
<Compile Include="Dialogs\AttachToProcess\UnityAttachProgramOptionsImpl.cs" />
|
||||
<Compile Include="Dialogs\AttachToProcess\UnityDataReceiver.cs" />
|
||||
<Compile Include="Dialogs\AttachToProcess\UnityEditorAttachProgramOptionsProvider.cs" />
|
||||
<Compile Include="Dialogs\AttachToProcess\UnityPlayerAttachProgramOptionsProvider.cs" />
|
||||
<Compile Include="Dialogs\DebuggingUnityGamesHelper.cs" />
|
||||
<Compile Include="Dialogs\DebugMenuCommands.cs" />
|
||||
<Compile Include="Dialogs\DebugProgram\BreakProcessKindsUtils.cs" />
|
||||
<Compile Include="Dialogs\DebugProgram\MonoConnectStartDebuggingOptionsPage.cs" />
|
||||
<Compile Include="Dialogs\DebugProgram\MonoConnectStartDebuggingOptionsPageBase.cs" />
|
||||
<Compile Include="Dialogs\DebugProgram\MonoStartDebuggingOptionsPage.cs" />
|
||||
<Compile Include="Dialogs\DebugProgram\MonoStartDebuggingOptionsPageBase.cs" />
|
||||
<Compile Include="Dialogs\DebugProgram\PortableExecutableFileHelpers.cs" />
|
||||
<Compile Include="Dialogs\DebugProgram\StartDebuggingOptionsPageProviderImpl.cs" />
|
||||
<Compile Include="Dialogs\DebugProgram\UnityConnectStartDebuggingOptionsPage.cs" />
|
||||
<Compile Include="Dialogs\DebugProgram\UnityGenericDebugEngineGuidProvider.cs" />
|
||||
<Compile Include="Dialogs\DebugProgram\UnityStartDebuggingOptionsPage.cs" />
|
||||
<Compile Include="Impl\Attach\MonoAttachToProgramOptionsBase.cs" />
|
||||
<Compile Include="Impl\Attach\UnityAttachToProgramOptions.cs" />
|
||||
<Compile Include="Impl\DbgEngineImpl.Breakpoints.cs" />
|
||||
<Compile Include="Impl\DbgEngineImpl.cs" />
|
||||
<Compile Include="Impl\DbgEngineImpl.Evaluation.cs" />
|
||||
<Compile Include="Impl\DbgEngineImpl.Steppers.cs" />
|
||||
<Compile Include="Impl\DbgEngineImpl.Threads.cs" />
|
||||
<Compile Include="Impl\DbgEngineImplDependencies.cs" />
|
||||
<Compile Include="Impl\DbgEngineProviderImpl.cs" />
|
||||
<Compile Include="Impl\DbgModuleMemoryRefreshedNotifierImpl.cs" />
|
||||
<Compile Include="Impl\DbgMonoDebugInternalAppDomainImpl.cs" />
|
||||
<Compile Include="Impl\DbgMonoDebugInternalModuleImpl.cs" />
|
||||
<Compile Include="Impl\DebuggerThread.cs" />
|
||||
<Compile Include="Impl\DmdDispatcherImpl.cs" />
|
||||
<Compile Include="Impl\DotNetMonoRuntimeId.cs" />
|
||||
<Compile Include="Impl\EvalReflectionUtils.cs" />
|
||||
<Compile Include="Impl\Evaluation\DbgDotNetDispatcherExtensions.cs" />
|
||||
<Compile Include="Impl\Evaluation\DbgDotNetDispatcherImpl.cs" />
|
||||
<Compile Include="Impl\Evaluation\DbgDotNetEngineObjectIdFactoryImpl.cs" />
|
||||
<Compile Include="Impl\Evaluation\DbgDotNetObjectIdImpl.cs" />
|
||||
<Compile Include="Impl\Evaluation\DbgDotNetRawValueFactory.cs" />
|
||||
<Compile Include="Impl\Evaluation\DbgDotNetValueImpl.cs" />
|
||||
<Compile Include="Impl\Evaluation\DbgMonoDebugInternalRuntimeImpl.cs" />
|
||||
<Compile Include="Impl\Evaluation\DmdEvaluatorImpl.cs" />
|
||||
<Compile Include="Impl\Evaluation\EvalArgumentConverter.cs" />
|
||||
<Compile Include="Impl\Evaluation\Hooks\ClassHook.cs" />
|
||||
<Compile Include="Impl\Evaluation\Hooks\ClassHookInfo.cs" />
|
||||
<Compile Include="Impl\Evaluation\Hooks\ClassHookProvider.cs" />
|
||||
<Compile Include="Impl\Evaluation\Hooks\IMonoDebugRuntime.cs" />
|
||||
<Compile Include="Impl\Evaluation\Hooks\MonoDebugValueConverterImpl.cs" />
|
||||
<Compile Include="Impl\Evaluation\Hooks\System_String.cs" />
|
||||
<Compile Include="Impl\Evaluation\MemberMirrorUtils.cs" />
|
||||
<Compile Include="Impl\Evaluation\MethodCache.cs" />
|
||||
<Compile Include="Impl\Evaluation\MonoDebugTypeCreator.cs" />
|
||||
<Compile Include="Impl\Evaluation\MonoValueFactory.cs" />
|
||||
<Compile Include="Impl\Evaluation\MonoValueTypeCreator.cs" />
|
||||
<Compile Include="Impl\Evaluation\SyntheticValues.cs" />
|
||||
<Compile Include="Impl\Evaluation\ValueLocations.cs" />
|
||||
<Compile Include="Impl\Evaluation\ValueUtils.cs" />
|
||||
<Compile Include="Impl\ExceptionUtils.cs" />
|
||||
<Compile Include="Impl\FuncEvalFactory.cs" />
|
||||
<Compile Include="Impl\ModuleCreator.cs" />
|
||||
<Compile Include="Impl\ModuleIdUtils.cs" />
|
||||
<Compile Include="Impl\MonoExeFinder.cs" />
|
||||
<Compile Include="Impl\MonoTypeLoader.cs" />
|
||||
<Compile Include="Impl\NativeMethods.cs" />
|
||||
<Compile Include="Impl\NetUtils.cs" />
|
||||
<Compile Include="Impl\ObjectConstants.cs" />
|
||||
<Compile Include="Impl\PortableExecutableFileHelpers.cs" />
|
||||
<Compile Include="Impl\PortableExecutableHelper.cs" />
|
||||
<Compile Include="Impl\ReflectionTypeCreator.cs" />
|
||||
<Compile Include="Impl\ThreadMirrorUtils.cs" />
|
||||
<Compile Include="Impl\ThreadProperties.cs" />
|
||||
<Compile Include="Impl\TypeCache.cs" />
|
||||
<Compile Include="Impl\WpfDebugMessageDispatcher.cs" />
|
||||
<Compile Include="Metadata\DbgAssemblyInfoProviderImpl.cs" />
|
||||
<Compile Include="Metadata\DbgModuleIdProviderImpl.cs" />
|
||||
<Compile Include="Properties\dnSpy.Debugger.DotNet.Mono.Resources.Designer.cs">
|
||||
<Compile Update="Properties\dnSpy.Debugger.DotNet.Mono.Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>dnSpy.Debugger.DotNet.Mono.Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Steppers\DbgDotNetEngineStepperImpl.cs" />
|
||||
<Compile Include="Steppers\DbgDotNetStepperBreakpointImpl.cs" />
|
||||
<Compile Include="TheExtension.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Debugger.DotNet.Mono\dnSpy.Contracts.Debugger.DotNet.Mono.csproj">
|
||||
<Project>{7b58f062-7ed0-4af1-90bb-beb509e3bd68}</Project>
|
||||
<Name>dnSpy.Contracts.Debugger.DotNet.Mono</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Debugger.DotNet\dnSpy.Contracts.Debugger.DotNet.csproj">
|
||||
<Project>{2376E072-101F-4900-8770-79C6DFFBD0FB}</Project>
|
||||
<Name>dnSpy.Contracts.Debugger.DotNet</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Debugger\dnSpy.Contracts.Debugger.csproj">
|
||||
<Project>{c92217e8-a68e-4f8d-9b98-d7328e89daf1}</Project>
|
||||
<Name>dnSpy.Contracts.Debugger</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj">
|
||||
<Project>{cb6f6372-9479-41e2-83a8-07854326bca8}</Project>
|
||||
<Name>dnSpy.Contracts.DnSpy</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj">
|
||||
<Project>{BB748E78-376F-429A-8D83-9A8946EC179F}</Project>
|
||||
<Name>dnSpy.Contracts.Logic</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\Libraries\dnlib\src\dnlib.csproj">
|
||||
<Project>{fdfc1237-143f-4919-8318-4926901f4639}</Project>
|
||||
<Name>dnlib</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\dnSpy.Debugger.DotNet.Metadata\dnSpy.Debugger.DotNet.Metadata.csproj">
|
||||
<Project>{fcd8913d-85a0-479e-9689-70fea52c6dcb}</Project>
|
||||
<Name>dnSpy.Debugger.DotNet.Metadata</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Mono.Debugger.Soft\Mono.Debugger.Soft.csproj">
|
||||
<Project>{57b5039f-30cc-4eaa-9d55-1b9a07ac8a69}</Project>
|
||||
<Name>Mono.Debugger.Soft</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="PresentationCore" />
|
||||
<Reference Include="PresentationFramework" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.ComponentModel.Composition" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xaml" />
|
||||
<Reference Include="WindowsBase" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.Mono.Resources.resx">
|
||||
<EmbeddedResource Update="Properties\dnSpy.Debugger.DotNet.Mono.Resources.resx">
|
||||
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>dnSpy.Debugger.DotNet.Mono.Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.Mono.Resources.ru.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.Mono.Resources.zh-CN.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.Mono.Resources.pt-PT.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.Mono.Resources.de.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.Mono.Resources.es-ES.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.Mono.Resources.hu.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.Mono.Resources.fr.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.Mono.Resources.it.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.Mono.Resources.uk.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.Mono.Resources.fa.resx" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="..\..\..\dnSpy\dnSpy\Properties\AssemblyInfo.Shared.cs">
|
||||
<Link>Properties\AssemblyInfo.Shared.cs</Link>
|
||||
</Compile>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Debugger.DotNet.Mono\dnSpy.Contracts.Debugger.DotNet.Mono.csproj" />
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Debugger.DotNet\dnSpy.Contracts.Debugger.DotNet.csproj" />
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Debugger\dnSpy.Contracts.Debugger.csproj" />
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj" />
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj" />
|
||||
<ProjectReference Include="..\..\..\Libraries\dnlib\src\dnlib.csproj" />
|
||||
<ProjectReference Include="..\dnSpy.Debugger.DotNet.Metadata\dnSpy.Debugger.DotNet.Metadata.csproj" />
|
||||
<ProjectReference Include="..\Mono.Debugger.Soft\Mono.Debugger.Soft.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="PresentationCore" />
|
||||
<Reference Include="PresentationFramework" />
|
||||
<Reference Include="System.ComponentModel.Composition" />
|
||||
<Reference Include="System.Xaml" />
|
||||
<Reference Include="WindowsBase" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Page Include="Themes\wpf.styles.templates.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: AssemblyTitle(".NET Debugger")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct(".NET Debugger")]
|
||||
[assembly: AssemblyCopyright("Copyright (C) 2014-2018 de4dot@gmail.com")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
|
@ -1,245 +1,76 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{8EA4B210-37BE-478F-AB0E-8C8C3E016114}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>dnSpy.Debugger.DotNet</RootNamespace>
|
||||
<Copyright>$(DnSpyAssemblyCopyright)</Copyright>
|
||||
<Version>$(DnSpyAssemblyVersion)</Version>
|
||||
<InformationalVersion>$(DnSpyAssemblyInformationalVersion)</InformationalVersion>
|
||||
|
||||
<AssemblyName>dnSpy.Debugger.DotNet.x</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\..\..\dnSpy\dnSpy\bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<OutputPath>..\..\..\dnSpy\dnSpy\bin\$(Configuration)\</OutputPath>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<NoWarn>1685</NoWarn>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>..\..\..\dnSpy\dnSpy\bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<NoWarn>1685</NoWarn>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="PresentationCore" />
|
||||
<Reference Include="PresentationFramework" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.ComponentModel.Composition" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xaml" />
|
||||
<Reference Include="WindowsBase" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="Breakpoints\Code\DbgBreakpointLocationFormatterProviderImpl.cs" />
|
||||
<Compile Include="Breakpoints\Code\DbgDotNetBreakpointFactoryImpl.cs" />
|
||||
<Compile Include="Breakpoints\Code\TextEditor\ClassBreakpointCommands.cs" />
|
||||
<Compile Include="Breakpoints\Code\TextEditor\DbgBreakpointGlyphFormatterImpl.cs" />
|
||||
<Compile Include="Breakpoints\Code\TextEditor\DbgBreakpointGlyphTextMarkerLocationProviderImpl.cs" />
|
||||
<Compile Include="Breakpoints\Code\TextEditor\DeleteBreakpointsInRemovedModules.cs" />
|
||||
<Compile Include="CallStack\TextEditor\DbgStackFrameGlyphTextMarkerLocationInfoProviderImpl.cs" />
|
||||
<Compile Include="CallStack\TextEditor\DbgStackFrameTextViewMarkerImpl.cs" />
|
||||
<Compile Include="Code\BreakpointFormatterService.cs" />
|
||||
<Compile Include="Code\DbgBreakpointLocationFormatterImpl.cs" />
|
||||
<Compile Include="Code\DbgCodeLocationSerializerImpl.cs" />
|
||||
<Compile Include="Code\DbgDotNetCodeLocationFactoryImpl.cs" />
|
||||
<Compile Include="Code\DbgDotNetCodeLocationImpl.cs" />
|
||||
<Compile Include="Code\DbgDotNetDebugInfoService.cs" />
|
||||
<Compile Include="Code\DbgDotNetDebugInfoServiceImpl.cs" />
|
||||
<Compile Include="Code\DbgDotNetDecompilerGuidProviderImpl.cs" />
|
||||
<Compile Include="Code\DbgDotNetDecompilerServiceImpl.cs" />
|
||||
<Compile Include="Code\DbgMethodDebugInfoProvider.cs" />
|
||||
<Compile Include="Code\DotNetReferenceNavigator.cs" />
|
||||
<Compile Include="Code\ReferenceConverterImpl.cs" />
|
||||
<Compile Include="Code\TextEditor\DbgTextViewCodeLocationProviderImpl.cs" />
|
||||
<Compile Include="Dialogs\DebugProgram\DotNetGenericDebugEngineGuidProvider.cs" />
|
||||
<Compile Include="Dialogs\DebugProgram\PortableExecutableFileHelpers.cs" />
|
||||
<Compile Include="Disassembly\DbgRuntimeNativeCodeProviderImpl.cs" />
|
||||
<Compile Include="Disassembly\DecompiledCodeProvider.cs" />
|
||||
<Compile Include="Disassembly\DecompilerOutputImpl.cs" />
|
||||
<Compile Include="Disassembly\ILSourceStatementProvider.cs" />
|
||||
<Compile Include="Disassembly\SourceStatementProvider.cs" />
|
||||
<Compile Include="Evaluation\Engine\DbgAliasProvider.cs" />
|
||||
<Compile Include="Evaluation\Engine\DbgDotNetDispatcherExtensions.cs" />
|
||||
<Compile Include="Evaluation\Engine\DbgDotNetEngineValueNodeFactory.cs" />
|
||||
<Compile Include="Evaluation\Engine\DbgDotNetEngineValueNodeFactoryExtensions.cs" />
|
||||
<Compile Include="Evaluation\Engine\DbgDotNetEngineValueNodeFactoryService.cs" />
|
||||
<Compile Include="Evaluation\Engine\DbgDotNetLanguageServiceImpl.cs" />
|
||||
<Compile Include="Evaluation\Engine\DbgDotNetValueCreator.cs" />
|
||||
<Compile Include="Evaluation\Engine\DbgEngineAutosProviderImpl.cs" />
|
||||
<Compile Include="Evaluation\Engine\DbgEngineExceptionsProviderImpl.cs" />
|
||||
<Compile Include="Evaluation\Engine\DbgEngineExpressionEvaluatorImpl.cs" />
|
||||
<Compile Include="Evaluation\Engine\DbgEngineFormatterImpl.cs" />
|
||||
<Compile Include="Evaluation\Engine\DbgEngineLanguageImpl.cs" />
|
||||
<Compile Include="Evaluation\Engine\DbgEngineLanguageProviderImpl.cs" />
|
||||
<Compile Include="Evaluation\Engine\DbgEngineLocalsProviderImpl.cs" />
|
||||
<Compile Include="Evaluation\Engine\DbgEngineObjectIdFactoryImpl.cs" />
|
||||
<Compile Include="Evaluation\Engine\DbgEngineObjectIdImpl.cs" />
|
||||
<Compile Include="Evaluation\Engine\DbgEngineReturnValuesProviderImpl.cs" />
|
||||
<Compile Include="Evaluation\Engine\DbgEngineTypeVariablesProviderImpl.cs" />
|
||||
<Compile Include="Evaluation\Engine\DbgEngineValueImpl.cs" />
|
||||
<Compile Include="Evaluation\Engine\DbgEngineValueNodeFactoryImpl.cs" />
|
||||
<Compile Include="Evaluation\Engine\DbgEngineValueNodeImpl.cs" />
|
||||
<Compile Include="Evaluation\Engine\DbgModuleReferenceProvider.cs" />
|
||||
<Compile Include="Evaluation\Engine\DecompilerOutputImpl.cs" />
|
||||
<Compile Include="Evaluation\Engine\ExceptionUtils.cs" />
|
||||
<Compile Include="Evaluation\Engine\ExpressionCompilerConstants.cs" />
|
||||
<Compile Include="Evaluation\Engine\Interpreter\AddressILValue.cs" />
|
||||
<Compile Include="Evaluation\Engine\Interpreter\ArrayILValue.cs" />
|
||||
<Compile Include="Evaluation\Engine\Interpreter\BoxedValueTypeILValue.cs" />
|
||||
<Compile Include="Evaluation\Engine\Interpreter\ByRefILValueImpl.cs" />
|
||||
<Compile Include="Evaluation\Engine\Interpreter\DbgDotNetILInterpreter.cs" />
|
||||
<Compile Include="Evaluation\Engine\Interpreter\DebuggerRuntimeFactory.cs" />
|
||||
<Compile Include="Evaluation\Engine\Interpreter\DebuggerRuntimeFactoryImpl.cs" />
|
||||
<Compile Include="Evaluation\Engine\Interpreter\DebuggerRuntimeImpl.cs" />
|
||||
<Compile Include="Evaluation\Engine\Interpreter\DefaultArgumentsProviderImpl.cs" />
|
||||
<Compile Include="Evaluation\Engine\Interpreter\DefaultLocalsProviderImpl.cs" />
|
||||
<Compile Include="Evaluation\Engine\Interpreter\DotNetClassHook.cs" />
|
||||
<Compile Include="Evaluation\Engine\Interpreter\DotNetClassHookFactory.cs" />
|
||||
<Compile Include="Evaluation\Engine\Interpreter\Hooks\dnSpy_Roslyn_ExpressionEvaluator_IntrinsicMethods.cs" />
|
||||
<Compile Include="Evaluation\Engine\Interpreter\Hooks\DotNetClassHookFactoryImpl.cs" />
|
||||
<Compile Include="Evaluation\Engine\Interpreter\Hooks\System_Runtime_CompilerServices_RuntimeHelpers.cs" />
|
||||
<Compile Include="Evaluation\Engine\Interpreter\IDebuggerRuntime.cs" />
|
||||
<Compile Include="Evaluation\Engine\Interpreter\ILValues.cs" />
|
||||
<Compile Include="Evaluation\Engine\Interpreter\InterpreterLocalsProvider.cs" />
|
||||
<Compile Include="Evaluation\Engine\Interpreter\RuntimeHandleILValues.cs" />
|
||||
<Compile Include="Evaluation\Engine\Interpreter\SyntheticValues.cs" />
|
||||
<Compile Include="Evaluation\Engine\Interpreter\TypeILValueImpl.cs" />
|
||||
<Compile Include="Evaluation\Engine\Interpreter\UnboxAddressILValue.cs" />
|
||||
<Compile Include="Evaluation\Engine\Interpreter\VariablesProvider.cs" />
|
||||
<Compile Include="Evaluation\Engine\IntrinsicsAssemblyBuilder.cs" />
|
||||
<Compile Include="Evaluation\Engine\LanguageConstants.cs" />
|
||||
<Compile Include="Evaluation\Engine\MetadataFixer.cs" />
|
||||
<Compile Include="Evaluation\Engine\MethodDebugScopeUtils.cs" />
|
||||
<Compile Include="Evaluation\Engine\ModuleRefFinder.cs" />
|
||||
<Compile Include="Evaluation\Engine\ObjectCache.cs" />
|
||||
<Compile Include="Evaluation\Engine\StateWithKey.cs" />
|
||||
<Compile Include="Exceptions\BreakWhenThrownExceptionCommand.cs" />
|
||||
<Compile Include="Exceptions\CLRDbgExceptionFormatter.cs" />
|
||||
<Compile Include="Metadata\ClassLoader.cs" />
|
||||
<Compile Include="Metadata\Commands.cs" />
|
||||
<Compile Include="Metadata\DbgAssemblyInfoProviderService.cs" />
|
||||
<Compile Include="Metadata\DbgDynamicModuleProviderService.cs" />
|
||||
<Compile Include="Metadata\DbgInMemoryModuleService.cs" />
|
||||
<Compile Include="Metadata\DbgMetadataServiceImpl.cs" />
|
||||
<Compile Include="Metadata\DbgModuleIdProviderService.cs" />
|
||||
<Compile Include="Metadata\DbgModuleMemoryRefreshedNotifierImpl.cs" />
|
||||
<Compile Include="Metadata\DsDocumentProvider.cs" />
|
||||
<Compile Include="Metadata\DynamicModuleDefDocument.cs" />
|
||||
<Compile Include="Metadata\IModuleIdHolder.cs" />
|
||||
<Compile Include="Metadata\Internal\DbgRawMetadataImpl.cs" />
|
||||
<Compile Include="Metadata\Internal\DbgRawMetadataServiceImpl.cs" />
|
||||
<Compile Include="Metadata\Internal\NativeMethods.cs" />
|
||||
<Compile Include="Metadata\MemoryModuleDefDocument.cs" />
|
||||
<Compile Include="Metadata\ModuleIdFactoryProviderImpl.cs" />
|
||||
<Compile Include="Metadata\ModuleLoaderDlg.xaml.cs">
|
||||
<Compile Update="Metadata\ModuleLoaderDlg.xaml.cs">
|
||||
<DependentUpon>ModuleLoaderDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Metadata\ModuleLoaderVM.cs" />
|
||||
<Compile Include="Metadata\ShowModuleLoaderService.cs" />
|
||||
<Compile Include="Metadata\TreeViewUpdater.cs" />
|
||||
<Compile Include="Modules\DbgLoadModuleReferenceHandlerImpl.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Properties\dnSpy.Debugger.DotNet.Resources.Designer.cs">
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Update="Properties\dnSpy.Debugger.DotNet.Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>dnSpy.Debugger.DotNet.Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Steppers\Engine\CompilerUtils.cs" />
|
||||
<Compile Include="Steppers\Engine\DbgEngineStepperFactoryImpl.cs" />
|
||||
<Compile Include="Steppers\Engine\DbgEngineStepperImpl.cs" />
|
||||
<Compile Include="Steppers\Engine\TaskEvalUtils.cs" />
|
||||
<Compile Include="TheExtension.cs" />
|
||||
<Compile Include="UI\UIDispatcher.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="..\..\..\dnSpy\dnSpy\Properties\AssemblyInfo.Shared.cs">
|
||||
<Link>Properties\AssemblyInfo.Shared.cs</Link>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="project.json" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Debugger.DotNet\dnSpy.Contracts.Debugger.DotNet.csproj">
|
||||
<Project>{2376e072-101f-4900-8770-79c6dffbd0fb}</Project>
|
||||
<Name>dnSpy.Contracts.Debugger.DotNet</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Debugger\dnSpy.Contracts.Debugger.csproj">
|
||||
<Project>{c92217e8-a68e-4f8d-9b98-d7328e89daf1}</Project>
|
||||
<Name>dnSpy.Contracts.Debugger</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj">
|
||||
<Project>{cb6f6372-9479-41e2-83a8-07854326bca8}</Project>
|
||||
<Name>dnSpy.Contracts.DnSpy</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj">
|
||||
<Project>{bb748e78-376f-429a-8d83-9a8946ec179f}</Project>
|
||||
<Name>dnSpy.Contracts.Logic</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Decompiler\dnSpy.Decompiler.csproj">
|
||||
<Project>{9265E4EA-EB00-4CB6-8A9A-608871E24FD0}</Project>
|
||||
<Name>dnSpy.Decompiler</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\Libraries\dnlib\src\dnlib.csproj">
|
||||
<Project>{fdfc1237-143f-4919-8318-4926901f4639}</Project>
|
||||
<Name>dnlib</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\dnSpy.Debugger.DotNet.Interpreter\dnSpy.Debugger.DotNet.Interpreter.csproj">
|
||||
<Project>{b89e5078-ff71-4fb2-b99f-a790bd94afd7}</Project>
|
||||
<Name>dnSpy.Debugger.DotNet.Interpreter</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\dnSpy.Debugger.DotNet.Metadata\dnSpy.Debugger.DotNet.Metadata.csproj">
|
||||
<Project>{FCD8913D-85A0-479E-9689-70FEA52C6DCB}</Project>
|
||||
<Name>dnSpy.Debugger.DotNet.Metadata</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.Resources.resx">
|
||||
<EmbeddedResource Update="Properties\dnSpy.Debugger.DotNet.Resources.resx">
|
||||
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>dnSpy.Debugger.DotNet.Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.Resources.ru.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.Resources.zh-CN.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.Resources.pt-PT.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.Resources.de.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.Resources.es-ES.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.Resources.hu.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.Resources.fr.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.Resources.it.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.Resources.uk.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.DotNet.Resources.fa.resx" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Include="DotNet.ex.xml" />
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Debugger.DotNet\dnSpy.Contracts.Debugger.DotNet.csproj" />
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Debugger\dnSpy.Contracts.Debugger.csproj" />
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj" />
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj" />
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Decompiler\dnSpy.Decompiler.csproj" />
|
||||
<ProjectReference Include="..\..\..\Libraries\dnlib\src\dnlib.csproj" />
|
||||
<ProjectReference Include="..\dnSpy.Debugger.DotNet.Interpreter\dnSpy.Debugger.DotNet.Interpreter.csproj" />
|
||||
<ProjectReference Include="..\dnSpy.Debugger.DotNet.Metadata\dnSpy.Debugger.DotNet.Metadata.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Include="debug\**">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Page Include="Metadata\ModuleLoaderDlg.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
</Page>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.VisualStudio.Text.UI.Wpf" Version="$(MSVSTextVersion)" />
|
||||
</ItemGroup>
|
||||
|
||||
<Import Project="..\..\..\EmbedInteropTypes.targets" />
|
||||
<PropertyGroup>
|
||||
<PostBuildEvent>if not exist "$(TargetDir)debug" mkdir "$(TargetDir)debug"
|
||||
copy $(ProjectDir)*.ex.xml "$(TargetDir)debug" > NUL
|
||||
</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"Microsoft.VisualStudio.Text.UI.Wpf": "15.5.27130"
|
||||
},
|
||||
"frameworks": {
|
||||
"net471": { }
|
||||
},
|
||||
"runtimes": {
|
||||
"win": { }
|
||||
}
|
||||
}
|
|
@ -52,6 +52,7 @@ namespace dnSpy.Debugger.Evaluation.ViewModel {
|
|||
/// </summary>
|
||||
/// <param name="evalOptions">Evaluation options</param>
|
||||
/// <param name="nodeEvalOptions">Value node evaluation options</param>
|
||||
/// <param name="nameFormatterOptions">Name formatter options</param>
|
||||
/// <returns></returns>
|
||||
public abstract GetNodesResult GetNodes(DbgEvaluationOptions evalOptions, DbgValueNodeEvaluationOptions nodeEvalOptions, DbgValueFormatterOptions nameFormatterOptions);
|
||||
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: AssemblyTitle("Debugger")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Debugger")]
|
||||
[assembly: AssemblyCopyright("Copyright (C) 2014-2018 de4dot@gmail.com")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
|
@ -1,465 +1,83 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{52995BD1-DB91-4654-89B7-1DEB3B0D3155}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>dnSpy.Debugger</RootNamespace>
|
||||
<Copyright>$(DnSpyAssemblyCopyright)</Copyright>
|
||||
<Version>$(DnSpyAssemblyVersion)</Version>
|
||||
<InformationalVersion>$(DnSpyAssemblyInformationalVersion)</InformationalVersion>
|
||||
|
||||
<AssemblyName>dnSpy.Debugger.x</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\..\..\dnSpy\dnSpy\bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<OutputPath>..\..\..\dnSpy\dnSpy\bin\$(Configuration)\</OutputPath>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<NoWarn>1685</NoWarn>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>..\..\..\dnSpy\dnSpy\bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<NoWarn>1685</NoWarn>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="Attach\AttachableProcessesServiceImpl.cs" />
|
||||
<Compile Include="Attach\AttachableProcessImpl.cs" />
|
||||
<Compile Include="Attach\AttachableProcessInfo.cs" />
|
||||
<Compile Include="Attach\Win32CommandLineProvider.cs" />
|
||||
<Compile Include="Breakpoints\Code\BoundCodeBreakpointsService.cs" />
|
||||
<Compile Include="Breakpoints\Code\BreakpointConditionsFormatter.cs" />
|
||||
<Compile Include="Breakpoints\Code\BreakpointImageUtilities.cs" />
|
||||
<Compile Include="Breakpoints\Code\BreakpointsSerializer.cs" />
|
||||
<Compile Include="Breakpoints\Code\CodeBreakpointsListSettings.cs" />
|
||||
<Compile Include="Breakpoints\Code\CondChecker\BreakpointBreakChecker.cs" />
|
||||
<Compile Include="Breakpoints\Code\CondChecker\DbgCodeBreakpointCheckResult.cs" />
|
||||
<Compile Include="Breakpoints\Code\CondChecker\DbgCodeBreakpointConditionChecker.cs" />
|
||||
<Compile Include="Breakpoints\Code\CondChecker\DbgCodeBreakpointFilterChecker.cs" />
|
||||
<Compile Include="Breakpoints\Code\CondChecker\DbgCodeBreakpointHitCountChecker.cs" />
|
||||
<Compile Include="Breakpoints\Code\CondChecker\DbgCodeBreakpointTraceMessagePrinter.cs" />
|
||||
<Compile Include="Breakpoints\Code\CondChecker\DbgFilterExpressionEvaluatorService.cs" />
|
||||
<Compile Include="Breakpoints\Code\CondChecker\ListCache.cs" />
|
||||
<Compile Include="Breakpoints\Code\CondChecker\ObjectCache.cs" />
|
||||
<Compile Include="Breakpoints\Code\CondChecker\ParsedTracepointMessage.cs" />
|
||||
<Compile Include="Breakpoints\Code\CondChecker\TracepointMessageCreator.cs" />
|
||||
<Compile Include="Breakpoints\Code\CondChecker\TracepointMessageParser.cs" />
|
||||
<Compile Include="Breakpoints\Code\DbgBreakpointLocationFormatterService.cs" />
|
||||
<Compile Include="Breakpoints\Code\DbgBreakpointLocationSerializerService.cs" />
|
||||
<Compile Include="Breakpoints\Code\DbgCodeBreakpointDisplaySettingsBase.cs" />
|
||||
<Compile Include="Breakpoints\Code\DbgCodeBreakpointHitCountServiceImpl.cs" />
|
||||
<Compile Include="Breakpoints\Code\DbgCodeBreakpointImpl.cs" />
|
||||
<Compile Include="Breakpoints\Code\DbgCodeBreakpointSerializerService.cs" />
|
||||
<Compile Include="Breakpoints\Code\DbgCodeBreakpointsServiceImpl.cs" />
|
||||
<Compile Include="Breakpoints\Code\ITracepointMessageListener.cs" />
|
||||
<Compile Include="Breakpoints\Code\RemoveTemporaryBreakpoints.cs" />
|
||||
<Compile Include="Breakpoints\Code\ResetHitCount.cs" />
|
||||
<Compile Include="Breakpoints\Code\TextEditor\BreakpointGlyphPopupControl.xaml.cs">
|
||||
<Compile Update="Breakpoints\Code\TextEditor\BreakpointGlyphPopupControl.xaml.cs">
|
||||
<DependentUpon>BreakpointGlyphPopupControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Breakpoints\Code\TextEditor\BreakpointGlyphPopupVM.cs" />
|
||||
<Compile Include="Breakpoints\Code\TextEditor\BreakpointGlyphTextMarkerHandler.cs" />
|
||||
<Compile Include="Breakpoints\Code\TextEditor\BreakpointGlyphTextMarkerLocationProviderService.cs" />
|
||||
<Compile Include="Breakpoints\Code\TextEditor\BreakpointInfo.cs" />
|
||||
<Compile Include="Breakpoints\Code\TextEditor\BreakpointMarker.cs" />
|
||||
<Compile Include="Breakpoints\Code\TextEditor\GlyphMarginCommands.cs" />
|
||||
<Compile Include="Breakpoints\Code\TextEditor\GlyphMarginOperations.cs" />
|
||||
<Compile Include="Breakpoints\Code\TextEditor\GlyphTextMarkerMouseProcessor.cs" />
|
||||
<Compile Include="Breakpoints\Code\TextEditor\TextViewBreakpointService.cs" />
|
||||
<Compile Include="Breakpoints\Modules\BreakpointsSerializer.cs" />
|
||||
<Compile Include="Breakpoints\Modules\DbgModuleBreakpointImpl.cs" />
|
||||
<Compile Include="Breakpoints\Modules\DbgModuleBreakpointsServiceImpl.cs" />
|
||||
<Compile Include="Breakpoints\Modules\ModuleBreakpointHitChecker.cs" />
|
||||
<Compile Include="Breakpoints\Modules\ModuleBreakpointsListSettings.cs" />
|
||||
<Compile Include="CallStack\DbgCallStackServiceImpl.cs" />
|
||||
<Compile Include="CallStack\DbgStackFrameImpl.cs" />
|
||||
<Compile Include="CallStack\DbgStackWalkerImpl.cs" />
|
||||
<Compile Include="CallStack\SpecialDbgEngineStackFrame.cs" />
|
||||
<Compile Include="CallStack\TextEditor\ActiveStatementService.cs" />
|
||||
<Compile Include="CallStack\TextEditor\CallStackFrameKind.cs" />
|
||||
<Compile Include="CallStack\TextEditor\CallStackGlyphTextMarkerHandler.cs" />
|
||||
<Compile Include="CallStack\TextEditor\CallStackMarker.cs" />
|
||||
<Compile Include="Code\GoToInMemoryModuleStatement.cs" />
|
||||
<Compile Include="Code\TextEditor\DbgTextViewCodeLocationService.cs" />
|
||||
<Compile Include="DbgUI\CurrentStatementUpdater.cs" />
|
||||
<Compile Include="DbgUI\DbgProcessStarterService.cs" />
|
||||
<Compile Include="DbgUI\Debugger.cs" />
|
||||
<Compile Include="DbgUI\DebuggerImpl.cs" />
|
||||
<Compile Include="DbgUI\DebugMenu.cs" />
|
||||
<Compile Include="DbgUI\DebugMenuCommands.cs" />
|
||||
<Compile Include="DbgUI\DefaultDbgProcessStarter.cs" />
|
||||
<Compile Include="DbgUI\DocumentViewerCommands.cs" />
|
||||
<Compile Include="DbgUI\KeyboardShortcutCommands.cs" />
|
||||
<Compile Include="DbgUI\PortableExecutableFileHelpers.cs" />
|
||||
<Compile Include="DbgUI\StartDebuggingOptionsMru.cs" />
|
||||
<Compile Include="DbgUI\StartDebuggingOptionsProvider.cs" />
|
||||
<Compile Include="DbgUI\ToolbarButtonCommands.cs" />
|
||||
<Compile Include="DbgUI\WpfCurrentStatementUpdater.cs" />
|
||||
<Compile Include="Dialogs\AttachToProcess\AttachProgramOptionsAggregator.cs" />
|
||||
<Compile Include="Dialogs\AttachToProcess\AttachProgramOptionsAggregatorImpl.cs" />
|
||||
<Compile Include="Dialogs\AttachToProcess\AttachToProcessContext.cs" />
|
||||
<Compile Include="Dialogs\AttachToProcess\AttachToProcessDlg.xaml.cs">
|
||||
<Compile Update="Dialogs\AttachToProcess\AttachToProcessDlg.xaml.cs">
|
||||
<DependentUpon>AttachToProcessDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Dialogs\AttachToProcess\AttachToProcessVM.cs" />
|
||||
<Compile Include="Dialogs\AttachToProcess\ProgramColumnConverter.cs" />
|
||||
<Compile Include="Dialogs\AttachToProcess\ProgramFormatter.cs" />
|
||||
<Compile Include="Dialogs\AttachToProcess\ProgramVM.cs" />
|
||||
<Compile Include="Dialogs\AttachToProcess\SearchTextClassifierProvider.cs" />
|
||||
<Compile Include="Dialogs\AttachToProcess\ShowAttachToProcessDialogImpl.cs" />
|
||||
<Compile Include="Dialogs\CodeBreakpoints\ShowCodeBreakpointSettingsDlg.xaml.cs">
|
||||
<Compile Update="Dialogs\CodeBreakpoints\ShowCodeBreakpointSettingsDlg.xaml.cs">
|
||||
<DependentUpon>ShowCodeBreakpointSettingsDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Dialogs\CodeBreakpoints\ShowCodeBreakpointSettingsService.cs" />
|
||||
<Compile Include="Dialogs\CodeBreakpoints\ShowCodeBreakpointSettingsVM.cs" />
|
||||
<Compile Include="Dialogs\DebugProgram\DebugProgramDlg.xaml.cs">
|
||||
<Compile Update="Dialogs\DebugProgram\DebugProgramDlg.xaml.cs">
|
||||
<DependentUpon>DebugProgramDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Dialogs\DebugProgram\DebugProgramVM.cs" />
|
||||
<Compile Include="Dialogs\DebugProgram\OptionsPageVM.cs" />
|
||||
<Compile Include="Disassembly\Commands.cs" />
|
||||
<Compile Include="Disassembly\DbgNativeCodeProviderImpl.cs" />
|
||||
<Compile Include="Disassembly\DbgShowNativeCodeServiceImpl.cs" />
|
||||
<Compile Include="Disassembly\DisassemblyOperations.cs" />
|
||||
<Compile Include="Evaluation\DbgEvalFormatterSettings.cs" />
|
||||
<Compile Include="Evaluation\DbgEvalFormatterSettingsBase.cs" />
|
||||
<Compile Include="Evaluation\DbgEvaluationContextImpl.cs" />
|
||||
<Compile Include="Evaluation\DbgExpressionEvaluatorImpl.cs" />
|
||||
<Compile Include="Evaluation\DbgFormatterImpl.cs" />
|
||||
<Compile Include="Evaluation\DbgLanguageImpl.cs" />
|
||||
<Compile Include="Evaluation\DbgLanguageServiceImpl.cs" />
|
||||
<Compile Include="Evaluation\DbgLanguageServiceSettings.cs" />
|
||||
<Compile Include="Evaluation\DbgLocalsValueNodeProviderImpl.cs" />
|
||||
<Compile Include="Evaluation\DbgObjectIdImpl.cs" />
|
||||
<Compile Include="Evaluation\DbgObjectIdServiceImpl.cs" />
|
||||
<Compile Include="Evaluation\DbgRuntimeObjectIdService.cs" />
|
||||
<Compile Include="Evaluation\DbgValueImpl.cs" />
|
||||
<Compile Include="Evaluation\DbgValueNodeFactoryImpl.cs" />
|
||||
<Compile Include="Evaluation\DbgValueNodeImpl.cs" />
|
||||
<Compile Include="Evaluation\DbgValueNodeProviderImpl.cs" />
|
||||
<Compile Include="Evaluation\DbgValueNodeUtils.cs" />
|
||||
<Compile Include="Evaluation\NullDbgEngineLanguage.cs" />
|
||||
<Compile Include="Evaluation\NullDbgEngineObjectIdFactory.cs" />
|
||||
<Compile Include="Evaluation\PredefinedEvaluationErrorMessagesHelper.cs" />
|
||||
<Compile Include="Evaluation\UI\ValueNodesProviderImpl.cs" />
|
||||
<Compile Include="Evaluation\UI\VariablesWindowColumnConverter.cs" />
|
||||
<Compile Include="Evaluation\UI\VariablesWindowContentBase.cs" />
|
||||
<Compile Include="Evaluation\UI\VariablesWindowControl.xaml.cs">
|
||||
<Compile Update="Evaluation\UI\VariablesWindowControl.xaml.cs">
|
||||
<DependentUpon>VariablesWindowControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Evaluation\UI\VariablesWindowToolWindowContent.cs" />
|
||||
<Compile Include="Evaluation\UI\VariablesWindowVM.cs" />
|
||||
<Compile Include="Evaluation\UI\VariablesWindowVMOptions.cs" />
|
||||
<Compile Include="Evaluation\ViewModel\ClipboardFormats.cs" />
|
||||
<Compile Include="Evaluation\ViewModel\Impl\DbgValueNodeFormatParameters.cs" />
|
||||
<Compile Include="Evaluation\ViewModel\Impl\DbgValueNodeImageReferenceService.cs" />
|
||||
<Compile Include="Evaluation\ViewModel\Impl\DbgValueNodeReader.cs" />
|
||||
<Compile Include="Evaluation\ViewModel\Impl\IEditValueNodeExpression.cs" />
|
||||
<Compile Include="Evaluation\ViewModel\Impl\LanguageEditValueProvider.cs" />
|
||||
<Compile Include="Evaluation\ViewModel\Impl\RawNode.cs" />
|
||||
<Compile Include="Evaluation\ViewModel\Impl\ValueNodeFormatter.cs" />
|
||||
<Compile Include="Evaluation\ViewModel\Impl\ValueNodeImpl.cs" />
|
||||
<Compile Include="Evaluation\ViewModel\Impl\ValueNodesContext.cs" />
|
||||
<Compile Include="Evaluation\ViewModel\Impl\ValueNodesVM.cs" />
|
||||
<Compile Include="Evaluation\ViewModel\Impl\ValueNodesVMFactoryImpl.cs" />
|
||||
<Compile Include="Evaluation\ViewModel\Impl\ValueNodeTextClassifier.cs" />
|
||||
<Compile Include="Evaluation\ViewModel\Impl\ValueNodeTextClassifierContext.cs" />
|
||||
<Compile Include="Evaluation\ViewModel\Impl\VariablesWindowOperationsImpl.cs" />
|
||||
<Compile Include="Evaluation\ViewModel\Impl\VariablesWindowsCommands.cs" />
|
||||
<Compile Include="Evaluation\ViewModel\IValueNodesVM.cs" />
|
||||
<Compile Include="Evaluation\ViewModel\ValueNode.cs" />
|
||||
<Compile Include="Evaluation\ViewModel\ValueNodesProvider.cs" />
|
||||
<Compile Include="Evaluation\ViewModel\ValueNodesVMFactory.cs" />
|
||||
<Compile Include="Evaluation\ViewModel\VariablesWindowOperations.cs" />
|
||||
<Compile Include="Evaluation\Watch\WatchExpressionsService.cs" />
|
||||
<Compile Include="Exceptions\DbgExceptionFormatterService.cs" />
|
||||
<Compile Include="Exceptions\DbgExceptionImpl.cs" />
|
||||
<Compile Include="Exceptions\DbgExceptionSettingsServiceImpl.cs" />
|
||||
<Compile Include="Exceptions\DefaultExceptionDefinitionsProvider.cs" />
|
||||
<Compile Include="Exceptions\ExceptionConditionsChecker.cs" />
|
||||
<Compile Include="Exceptions\ExceptionListSettings.cs" />
|
||||
<Compile Include="Exceptions\ExceptionsFileReader.cs" />
|
||||
<Compile Include="Impl\CurrentObject.cs" />
|
||||
<Compile Include="Impl\DbgBoundCodeBreakpointImpl.cs" />
|
||||
<Compile Include="Impl\DbgBreakInfoCollectionBuilder.cs" />
|
||||
<Compile Include="Impl\DbgDispatcherImpl.cs" />
|
||||
<Compile Include="Impl\DbgDispatcherProvider.cs" />
|
||||
<Compile Include="Impl\DbgEngineBoundCodeBreakpointImpl.cs" />
|
||||
<Compile Include="Impl\DbgEngineBoundCodeBreakpointMessageExtensions.cs" />
|
||||
<Compile Include="Impl\DbgManagerImpl.BoundBreakpointsManager.cs" />
|
||||
<Compile Include="Impl\DbgManagerImpl.CurrentObjects.cs" />
|
||||
<Compile Include="Impl\DbgManagerImpl.ProcessKey.cs" />
|
||||
<Compile Include="Impl\DbgManagerImpl.Steppers.cs" />
|
||||
<Compile Include="Modules\ReferenceNavigatorImpl.cs" />
|
||||
<Compile Include="Steppers\DbgStepperImpl.cs" />
|
||||
<Compile Include="Text\ClassifiedText.cs" />
|
||||
<Compile Include="Text\ClassifiedTextWriter.cs" />
|
||||
<Compile Include="ToolWindows\AntiFlickerConstants.cs" />
|
||||
<Compile Include="ToolWindows\Autos\AutosContent.cs" />
|
||||
<Compile Include="ToolWindows\Autos\AutosToolWindowContent.cs" />
|
||||
<Compile Include="ToolWindows\Autos\AutosVariablesWindowValueNodesProvider.cs" />
|
||||
<Compile Include="ToolWindows\Autos\Commands.cs" />
|
||||
<Compile Include="ToolWindows\CallStack\CallStackColumnConverter.cs" />
|
||||
<Compile Include="ToolWindows\CallStack\CallStackContent.cs" />
|
||||
<Compile Include="ToolWindows\CallStack\CallStackContext.cs" />
|
||||
<Compile Include="ToolWindows\CallStack\CallStackControl.xaml.cs">
|
||||
<Compile Update="ToolWindows\CallStack\CallStackControl.xaml.cs">
|
||||
<DependentUpon>CallStackControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="ToolWindows\CallStack\CallStackDisplaySettings.cs" />
|
||||
<Compile Include="ToolWindows\CallStack\CallStackDisplaySettingsBase.cs" />
|
||||
<Compile Include="ToolWindows\CallStack\CallStackFormatter.cs" />
|
||||
<Compile Include="ToolWindows\CallStack\CallStackOperations.cs" />
|
||||
<Compile Include="ToolWindows\CallStack\CallStackToolWindowContent.cs" />
|
||||
<Compile Include="ToolWindows\CallStack\CallStackVM.cs" />
|
||||
<Compile Include="ToolWindows\CallStack\Commands.cs" />
|
||||
<Compile Include="ToolWindows\CallStack\StackFrameVM.cs" />
|
||||
<Compile Include="ToolWindows\CodeBreakpoints\CodeBreakpointColumnConverter.cs" />
|
||||
<Compile Include="ToolWindows\CodeBreakpoints\CodeBreakpointContext.cs" />
|
||||
<Compile Include="ToolWindows\CodeBreakpoints\CodeBreakpointFormatter.cs" />
|
||||
<Compile Include="ToolWindows\CodeBreakpoints\CodeBreakpointsContent.cs" />
|
||||
<Compile Include="ToolWindows\CodeBreakpoints\CodeBreakpointsControl.xaml.cs">
|
||||
<Compile Update="ToolWindows\CodeBreakpoints\CodeBreakpointsControl.xaml.cs">
|
||||
<DependentUpon>CodeBreakpointsControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="ToolWindows\CodeBreakpoints\CodeBreakpointsOperations.cs" />
|
||||
<Compile Include="ToolWindows\CodeBreakpoints\CodeBreakpointsToolWindowContent.cs" />
|
||||
<Compile Include="ToolWindows\CodeBreakpoints\CodeBreakpointsVM.cs" />
|
||||
<Compile Include="ToolWindows\CodeBreakpoints\CodeBreakpointVM.cs" />
|
||||
<Compile Include="ToolWindows\CodeBreakpoints\Commands.cs" />
|
||||
<Compile Include="ToolWindows\CodeBreakpoints\SearchTextClassifierProvider.cs" />
|
||||
<Compile Include="ToolWindows\Commands.cs" />
|
||||
<Compile Include="ToolWindows\Exceptions\ExceptionCategoryVM.cs" />
|
||||
<Compile Include="ToolWindows\Locals\AutoShowLocalsWindow.cs" />
|
||||
<Compile Include="ToolWindows\Locals\Commands.cs" />
|
||||
<Compile Include="ToolWindows\Locals\LocalsContent.cs" />
|
||||
<Compile Include="ToolWindows\Locals\LocalsToolWindowContent.cs" />
|
||||
<Compile Include="ToolWindows\Locals\LocalsVariablesWindowValueNodesProvider.cs" />
|
||||
<Compile Include="ToolWindows\ModuleBreakpoints\Commands.cs" />
|
||||
<Compile Include="ToolWindows\ModuleBreakpoints\ModuleBreakpointColumnConverter.cs" />
|
||||
<Compile Include="ToolWindows\ModuleBreakpoints\ModuleBreakpointContext.cs" />
|
||||
<Compile Include="ToolWindows\ModuleBreakpoints\ModuleBreakpointFormatter.cs" />
|
||||
<Compile Include="ToolWindows\ModuleBreakpoints\ModuleBreakpointsContent.cs" />
|
||||
<Compile Include="ToolWindows\ModuleBreakpoints\ModuleBreakpointsControl.xaml.cs">
|
||||
<Compile Update="ToolWindows\ModuleBreakpoints\ModuleBreakpointsControl.xaml.cs">
|
||||
<DependentUpon>ModuleBreakpointsControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="ToolWindows\ModuleBreakpoints\ModuleBreakpointsOperations.cs" />
|
||||
<Compile Include="ToolWindows\ModuleBreakpoints\ModuleBreakpointsToolWindowContent.cs" />
|
||||
<Compile Include="ToolWindows\ModuleBreakpoints\ModuleBreakpointsVM.cs" />
|
||||
<Compile Include="ToolWindows\ModuleBreakpoints\ModuleBreakpointVM.cs" />
|
||||
<Compile Include="ToolWindows\ModuleBreakpoints\SearchTextClassifierProvider.cs" />
|
||||
<Compile Include="ToolWindows\ModuleBreakpoints\TextViewTaggers.cs" />
|
||||
<Compile Include="ToolWindows\Modules\SearchTextClassifierProvider.cs" />
|
||||
<Compile Include="ToolWindows\SimpleProcessVM.cs" />
|
||||
<Compile Include="ToolWindows\TextView\DebuggerCommandConstants.cs" />
|
||||
<Compile Include="ToolWindows\TextView\DebuggerToolWindowIds.cs" />
|
||||
<Compile Include="ToolWindows\TextView\DebuggerToolWindowIdsExtensions.cs" />
|
||||
<Compile Include="ToolWindows\TextView\DocumentViewerCommandInfoProvider.cs" />
|
||||
<Compile Include="ToolWindows\TextView\DocumentViewerCommandTargetFilter.cs" />
|
||||
<Compile Include="ToolWindows\TextView\DocumentViewerCommandTargetFilterProvider.cs" />
|
||||
<Compile Include="ToolWindows\Threads\SearchTextClassifierProvider.cs" />
|
||||
<Compile Include="ToolWindows\Threads\ThreadUtilities.cs" />
|
||||
<Compile Include="ToolWindows\ToolWindowsOperations.cs" />
|
||||
<Compile Include="ToolWindows\Watch\CommandsLoader.cs" />
|
||||
<Compile Include="ToolWindows\Watch\WatchContent.cs" />
|
||||
<Compile Include="ToolWindows\Watch\WatchContentFactory.cs" />
|
||||
<Compile Include="ToolWindows\Watch\WatchExpressionsServiceImpl.cs" />
|
||||
<Compile Include="ToolWindows\Watch\WatchToolWindowContent.cs" />
|
||||
<Compile Include="ToolWindows\Watch\WatchVariablesWindowValueNodesProvider.cs" />
|
||||
<Compile Include="ToolWindows\Watch\WatchWindowExpressionsSettings.cs" />
|
||||
<Compile Include="ToolWindows\Watch\WatchWindowsHelper.cs" />
|
||||
<Compile Include="ToolWindows\Watch\WpfMemLeakWorkaround.cs" />
|
||||
<Compile Include="UI\BulkObservableCollection.cs" />
|
||||
<Compile Include="UI\FormatterObject.cs" />
|
||||
<Compile Include="UI\Wpf\ITextBlockContentInfoFactory.cs" />
|
||||
<Compile Include="UI\Wpf\SmartTextBlock.cs" />
|
||||
<Compile Include="UI\Wpf\TextBlockContentInfo.cs" />
|
||||
<Compile Include="UI\Wpf\TextBlockContentInfoFactory.cs" />
|
||||
<Compile Include="Utilities\ProcessProvider.cs" />
|
||||
<Compile Include="Utilities\ProcessUtilities.cs" />
|
||||
<Compile Include="Utilities\WildcardsUtils.cs" />
|
||||
<None Include="Exceptions\GenerateExceptionsXmlFile.cs" />
|
||||
<Compile Include="Impl\DbgAppDomainImpl.cs" />
|
||||
<Compile Include="Impl\DbgEngineAppDomainImpl.cs" />
|
||||
<Compile Include="Impl\DbgEngineModuleImpl.cs" />
|
||||
<Compile Include="Impl\DbgEngineThreadImpl.cs" />
|
||||
<Compile Include="Impl\DbgManagerImpl.BreakAllHelper.cs" />
|
||||
<Compile Include="Impl\DbgManagerImpl.cs" />
|
||||
<Compile Include="Impl\DbgManagerImpl.StopDebuggingHelper.cs" />
|
||||
<Compile Include="Impl\DbgManagerImpl.TagsCollection.cs" />
|
||||
<Compile Include="Impl\DbgModuleImpl.cs" />
|
||||
<Compile Include="Impl\DbgObjectFactoryImpl.cs" />
|
||||
<Compile Include="Impl\DbgProcessImpl.cs" />
|
||||
<Compile Include="Impl\DbgRuntimeImpl.cs" />
|
||||
<Compile Include="Impl\DbgThreadImpl.cs" />
|
||||
<Compile Include="Impl\DebuggerThread.cs" />
|
||||
<Compile Include="Impl\DelayedIsRunningHelper.cs" />
|
||||
<Compile Include="Impl\SwitchToDebuggedProcess.cs" />
|
||||
<Compile Include="Native\Memset.cs" />
|
||||
<Compile Include="Native\NativeMethods.cs" />
|
||||
<Compile Include="Properties\dnSpy.Debugger.Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>dnSpy.Debugger.Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Settings\DebuggerAppSettingsPage.cs" />
|
||||
<Compile Include="Settings\DebuggerSettingsImpl.cs" />
|
||||
<Compile Include="TheExtension.cs" />
|
||||
<Compile Include="ToolWindows\Exceptions\AddExceptionControl.xaml.cs">
|
||||
<Compile Update="ToolWindows\Exceptions\AddExceptionControl.xaml.cs">
|
||||
<DependentUpon>AddExceptionControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="ToolWindows\Exceptions\AddExceptionVM.cs" />
|
||||
<Compile Include="ToolWindows\Exceptions\Commands.cs" />
|
||||
<Compile Include="ToolWindows\Exceptions\EditExceptionConditionsDlg.xaml.cs">
|
||||
<Compile Update="ToolWindows\Exceptions\EditExceptionConditionsDlg.xaml.cs">
|
||||
<DependentUpon>EditExceptionConditionsDlg.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="ToolWindows\Exceptions\EditExceptionConditionsVM.cs" />
|
||||
<Compile Include="ToolWindows\Exceptions\ExceptionColumnConverter.cs" />
|
||||
<Compile Include="ToolWindows\Exceptions\ExceptionContext.cs" />
|
||||
<Compile Include="ToolWindows\Exceptions\ExceptionControl.xaml.cs">
|
||||
<Compile Update="ToolWindows\Exceptions\ExceptionControl.xaml.cs">
|
||||
<DependentUpon>ExceptionControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="ToolWindows\Exceptions\ExceptionFormatter.cs" />
|
||||
<Compile Include="ToolWindows\Exceptions\ExceptionsContent.cs" />
|
||||
<Compile Include="ToolWindows\Exceptions\ExceptionsOperations.cs" />
|
||||
<Compile Include="ToolWindows\Exceptions\ExceptionsToolWindowContent.cs" />
|
||||
<Compile Include="ToolWindows\Exceptions\ExceptionsVM.cs" />
|
||||
<Compile Include="ToolWindows\Exceptions\ExceptionVM.cs" />
|
||||
<Compile Include="ToolWindows\Exceptions\SearchTextClassifierProvider.cs" />
|
||||
<Compile Include="ToolWindows\FormatterUtils.cs" />
|
||||
<Compile Include="ToolWindows\LazyToolWindowVMHelper.cs" />
|
||||
<Compile Include="ToolWindows\Logger\Commands.cs" />
|
||||
<Compile Include="ToolWindows\Logger\ContentTypeDefinitions.cs" />
|
||||
<Compile Include="ToolWindows\Logger\OutputLogger.cs" />
|
||||
<Compile Include="ToolWindows\Logger\OutputLoggerSettings.cs" />
|
||||
<Compile Include="ToolWindows\Memory\BackgroundImageOptionDefinitions.cs" />
|
||||
<Compile Include="ToolWindows\Memory\BufferFileCreator.cs" />
|
||||
<Compile Include="ToolWindows\Memory\Commands.cs" />
|
||||
<Compile Include="ToolWindows\Memory\DebuggerHexBufferStream.cs" />
|
||||
<Compile Include="ToolWindows\Memory\HexEditorOptionsDefinitions.cs" />
|
||||
<Compile Include="ToolWindows\Memory\MemoryContent.cs" />
|
||||
<Compile Include="ToolWindows\Memory\MemoryControl.xaml.cs">
|
||||
<Compile Update="ToolWindows\Memory\MemoryControl.xaml.cs">
|
||||
<DependentUpon>MemoryControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="ToolWindows\Memory\MemoryToolWindowContentProvider.cs" />
|
||||
<Compile Include="ToolWindows\Memory\MemoryVM.cs" />
|
||||
<Compile Include="ToolWindows\Memory\MemoryWindowService.cs" />
|
||||
<Compile Include="ToolWindows\Memory\MemoryWindowsHelper.cs" />
|
||||
<Compile Include="ToolWindows\Memory\ProcessHexBufferProvider.cs" />
|
||||
<Compile Include="ToolWindows\Modules\Commands.cs" />
|
||||
<Compile Include="ToolWindows\Modules\ModuleColumnConverter.cs" />
|
||||
<Compile Include="ToolWindows\Modules\ModuleContext.cs" />
|
||||
<Compile Include="ToolWindows\Modules\ModuleFormatter.cs" />
|
||||
<Compile Include="ToolWindows\Modules\ModulesContent.cs" />
|
||||
<Compile Include="ToolWindows\Modules\ModulesControl.xaml.cs">
|
||||
<Compile Update="ToolWindows\Modules\ModulesControl.xaml.cs">
|
||||
<DependentUpon>ModulesControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="ToolWindows\Modules\ModulesOperations.cs" />
|
||||
<Compile Include="ToolWindows\Modules\ModulesSaver.cs" />
|
||||
<Compile Include="ToolWindows\Modules\ModulesToolWindowContent.cs" />
|
||||
<Compile Include="ToolWindows\Modules\ModulesVM.cs" />
|
||||
<Compile Include="ToolWindows\Modules\ModuleVM.cs" />
|
||||
<Compile Include="ToolWindows\Modules\PEFilesSaver.cs" />
|
||||
<Compile Include="ToolWindows\Processes\Commands.cs" />
|
||||
<Compile Include="ToolWindows\Processes\ProcessColumnConverter.cs" />
|
||||
<Compile Include="ToolWindows\Processes\ProcessContext.cs" />
|
||||
<Compile Include="ToolWindows\Processes\ProcessesControl.xaml.cs">
|
||||
<Compile Update="ToolWindows\Processes\ProcessesControl.xaml.cs">
|
||||
<DependentUpon>ProcessesControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="ToolWindows\Processes\ProcessesContent.cs" />
|
||||
<Compile Include="ToolWindows\Processes\ProcessesOperations.cs" />
|
||||
<Compile Include="ToolWindows\Processes\ProcessesToolWindowContent.cs" />
|
||||
<Compile Include="ToolWindows\Processes\ProcessesVM.cs" />
|
||||
<Compile Include="ToolWindows\Processes\ProcessFormatter.cs" />
|
||||
<Compile Include="ToolWindows\Processes\ProcessVM.cs" />
|
||||
<Compile Include="ToolWindows\Threads\Commands.cs" />
|
||||
<Compile Include="ToolWindows\Threads\DefaultThreadCategoryProvider.cs" />
|
||||
<Compile Include="ToolWindows\Threads\TextViewTaggers.cs" />
|
||||
<Compile Include="ToolWindows\Threads\ThreadCategoryService.cs" />
|
||||
<Compile Include="ToolWindows\Threads\ThreadColumnConverter.cs" />
|
||||
<Compile Include="ToolWindows\Threads\ThreadContext.cs" />
|
||||
<Compile Include="ToolWindows\Threads\ThreadFormatter.cs" />
|
||||
<Compile Include="ToolWindows\Threads\ThreadsContent.cs" />
|
||||
<Compile Include="ToolWindows\Threads\ThreadsControl.xaml.cs">
|
||||
<Compile Update="ToolWindows\Threads\ThreadsControl.xaml.cs">
|
||||
<DependentUpon>ThreadsControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="ToolWindows\Threads\ThreadsOperations.cs" />
|
||||
<Compile Include="ToolWindows\Threads\ThreadsToolWindowContent.cs" />
|
||||
<Compile Include="ToolWindows\Threads\ThreadsVM.cs" />
|
||||
<Compile Include="ToolWindows\Threads\ThreadVM.cs" />
|
||||
<Compile Include="UI\BooleanToHiddenVisibilityConverter.cs" />
|
||||
<Compile Include="UI\ContentTypeDefinitions.cs" />
|
||||
<Compile Include="UI\DynamicCheckableMenuItem.cs" />
|
||||
<Compile Include="UI\UIDispatcher.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Debugger\dnSpy.Contracts.Debugger.csproj">
|
||||
<Project>{c92217e8-a68e-4f8d-9b98-d7328e89daf1}</Project>
|
||||
<Name>dnSpy.Contracts.Debugger</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj">
|
||||
<Project>{cb6f6372-9479-41e2-83a8-07854326bca8}</Project>
|
||||
<Name>dnSpy.Contracts.DnSpy</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj">
|
||||
<Project>{BB748E78-376F-429A-8D83-9A8946EC179F}</Project>
|
||||
<Name>dnSpy.Contracts.Logic</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\Libraries\dnlib\src\dnlib.csproj">
|
||||
<Project>{fdfc1237-143f-4919-8318-4926901f4639}</Project>
|
||||
<Name>dnlib</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\Libraries\ICSharpCode.TreeView\ICSharpCode.TreeView.csproj">
|
||||
<Project>{dde2a481-8271-4eac-a330-8fa6a38d13d1}</Project>
|
||||
<Name>ICSharpCode.TreeView</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Debugger\dnSpy.Contracts.Debugger.csproj" />
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj" />
|
||||
<ProjectReference Include="..\..\..\dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj" />
|
||||
<ProjectReference Include="..\..\..\Libraries\dnlib\src\dnlib.csproj" />
|
||||
<ProjectReference Include="..\..\..\Libraries\ICSharpCode.TreeView\ICSharpCode.TreeView.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="PresentationCore" />
|
||||
<Reference Include="PresentationFramework" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.ComponentModel.Composition" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xaml" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="WindowsBase" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.Resources.resx">
|
||||
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>dnSpy.Debugger.Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.Resources.ru.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.Resources.zh-CN.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.Resources.pt-PT.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.Resources.de.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.Resources.es-ES.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.Resources.hu.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.Resources.fr.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.Resources.it.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.Resources.uk.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Debugger.Resources.fa.resx" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\..\..\dnSpy\dnSpy\Properties\AssemblyInfo.Shared.cs">
|
||||
<Link>Properties\AssemblyInfo.Shared.cs</Link>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Page Include="Breakpoints\Code\TextEditor\BreakpointGlyphPopupControl.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
|
@ -526,9 +144,31 @@
|
|||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Include="project.json" />
|
||||
<Compile Remove="Exceptions\GenerateExceptionsXmlFile.cs" />
|
||||
<None Include="Exceptions\GenerateExceptionsXmlFile.cs" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Update="Properties\dnSpy.Debugger.Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>dnSpy.Debugger.Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Update="Properties\dnSpy.Debugger.Resources.resx">
|
||||
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>dnSpy.Debugger.Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.VisualStudio.Text.UI.Wpf" Version="$(MSVSTextVersion)" />
|
||||
</ItemGroup>
|
||||
|
||||
<Import Project="..\..\..\EmbedInteropTypes.targets" />
|
||||
</Project>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"Microsoft.VisualStudio.Text.UI.Wpf": "15.5.27130"
|
||||
},
|
||||
"frameworks": {
|
||||
"net471": { }
|
||||
},
|
||||
"runtimes": {
|
||||
"win": { }
|
||||
}
|
||||
}
|
|
@ -19,7 +19,6 @@
|
|||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
using System.Threading;
|
||||
using System.Windows;
|
||||
using System.Windows.Threading;
|
||||
|
@ -79,7 +78,7 @@ namespace dnSpy.Scripting.Roslyn.Common {
|
|||
public Dispatcher UIDispatcher => dispatcher;
|
||||
public void UI(Action action) => dispatcher.UI(action);
|
||||
public T UI<T>(Func<T> func) => dispatcher.UI(func);
|
||||
public void Break() => Debugger.Break();
|
||||
public void Break() => System.Diagnostics.Debugger.Break();
|
||||
public T Resolve<T>() => owner.ServiceLocator.Resolve<T>();
|
||||
public T TryResolve<T>() => owner.ServiceLocator.TryResolve<T>();
|
||||
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: AssemblyTitle("dnSpy.Scripting.Roslyn")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("dnSpy.Scripting.Roslyn")]
|
||||
[assembly: AssemblyCopyright("Copyright (C) 2014-2018 de4dot@gmail.com")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
|
@ -19,7 +19,7 @@ namespace dnSpy.Scripting.Roslyn.Properties {
|
|||
// class via a tool like ResGen or Visual Studio.
|
||||
// To add or remove a member, edit your .ResX file then rerun ResGen
|
||||
// with the /str option, or rebuild your VS project.
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
public class dnSpy_Scripting_Roslyn_Resources {
|
||||
|
|
|
@ -1,146 +1,78 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{D2EFF1AF-6E3A-4025-9E67-52772384B73F}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>dnSpy.Scripting.Roslyn</RootNamespace>
|
||||
<Copyright>$(DnSpyAssemblyCopyright)</Copyright>
|
||||
<Version>$(DnSpyAssemblyVersion)</Version>
|
||||
<InformationalVersion>$(DnSpyAssemblyInformationalVersion)</InformationalVersion>
|
||||
|
||||
<AssemblyName>dnSpy.Scripting.Roslyn.x</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\..\dnSpy\dnSpy\bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<DocumentationFile>..\..\dnSpy\dnSpy\bin\Debug\dnSpy.Scripting.Roslyn.x.xml</DocumentationFile>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>..\..\dnSpy\dnSpy\bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<DocumentationFile>..\..\dnSpy\dnSpy\bin\Release\dnSpy.Scripting.Roslyn.x.xml</DocumentationFile>
|
||||
<OutputPath>..\..\dnSpy\dnSpy\bin\$(Configuration)\</OutputPath>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="PresentationCore" />
|
||||
<Reference Include="PresentationFramework" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.ComponentModel.Composition" />
|
||||
<Reference Include="System.Xaml" />
|
||||
<Reference Include="WindowsBase" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="Commands\RoslynReplCommandConstants.cs" />
|
||||
<Compile Include="Commands\RoslynReplIds.cs" />
|
||||
<Compile Include="Commands\RoslynReplIdsExtensions.cs" />
|
||||
<Compile Include="Common\CachedWriter.cs" />
|
||||
<Compile Include="Common\ClearCommand.cs" />
|
||||
<Compile Include="Common\Commands.cs" />
|
||||
<Compile Include="Common\HelpCommand.cs" />
|
||||
<Compile Include="Common\IScriptCommand.cs" />
|
||||
<Compile Include="Common\IScriptGlobalsHelper.cs" />
|
||||
<Compile Include="Common\PrintOptionsImpl.cs" />
|
||||
<Compile Include="Common\ReplSettings.cs" />
|
||||
<Compile Include="Common\ResetCommand.cs" />
|
||||
<Compile Include="Common\RespFileUtils.cs" />
|
||||
<Compile Include="Common\ResponseFileReader.cs" />
|
||||
<Compile Include="Common\RoslynReplCommandInfoProvider.cs" />
|
||||
<Compile Include="Common\RoslynReplCommandTargetFilter.cs" />
|
||||
<Compile Include="Common\RoslynReplCommandTargetFilterProvider.cs" />
|
||||
<Compile Include="Common\RoslynReplEditorUtils.cs" />
|
||||
<Compile Include="Common\ScriptContent.cs" />
|
||||
<Compile Include="Common\ScriptControl.xaml.cs">
|
||||
<Compile Update="Common\ScriptControl.xaml.cs">
|
||||
<DependentUpon>ScriptControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Common\ScriptControlVM.cs" />
|
||||
<Compile Include="Common\ScriptGlobals.cs" />
|
||||
<Compile Include="Common\ScriptToolWindowContent.cs" />
|
||||
<Compile Include="ContentTypeDefinitions.cs" />
|
||||
<Compile Include="CSharp\CSharpContent.cs" />
|
||||
<Compile Include="CSharp\CSharpControlVM.cs" />
|
||||
<Compile Include="CSharp\CSharpReplSettingsImpl.cs" />
|
||||
<Compile Include="CSharp\CSharpToolWindowContent.cs" />
|
||||
<Compile Include="CSharp\ReplOptionsDefinitions.cs" />
|
||||
<Compile Include="Properties\dnSpy.Scripting.Roslyn.Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>dnSpy.Scripting.Roslyn.Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="TheExtension.cs" />
|
||||
<None Include="CSharpInteractive.rsp">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</None>
|
||||
<None Include="VisualBasicInteractive.rsp" />
|
||||
<Compile Remove="VisualBasic\ReplOptionsDefinitions.cs" />
|
||||
<None Include="VisualBasic\ReplOptionsDefinitions.cs" />
|
||||
<Compile Remove="VisualBasic\VisualBasicToolWindowContent.cs" />
|
||||
<None Include="VisualBasic\VisualBasicToolWindowContent.cs" />
|
||||
<Compile Remove="VisualBasic\VisualBasicReplSettingsImpl.cs" />
|
||||
<None Include="VisualBasic\VisualBasicReplSettingsImpl.cs" />
|
||||
<Compile Remove="VisualBasic\VisualBasicControlVM.cs" />
|
||||
<None Include="VisualBasic\VisualBasicControlVM.cs" />
|
||||
<Compile Remove="VisualBasic\VisualBasicContent.cs" />
|
||||
<None Include="VisualBasic\VisualBasicContent.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\dnSpy\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj">
|
||||
<Project>{cb6f6372-9479-41e2-83a8-07854326bca8}</Project>
|
||||
<Name>dnSpy.Contracts.DnSpy</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj">
|
||||
<Project>{bb748e78-376f-429a-8d83-9a8946ec179f}</Project>
|
||||
<Name>dnSpy.Contracts.Logic</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\Libraries\dnlib\src\dnlib.csproj">
|
||||
<Project>{fdfc1237-143f-4919-8318-4926901f4639}</Project>
|
||||
<Name>dnlib</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\dnSpy\Roslyn\dnSpy.Roslyn\dnSpy.Roslyn.csproj">
|
||||
<Project>{844EEF8A-C7B6-4299-8CF0-4BD21DDDD4A8}</Project>
|
||||
<Name>dnSpy.Roslyn</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Properties\dnSpy.Scripting.Roslyn.Resources.resx">
|
||||
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>dnSpy.Scripting.Roslyn.Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Properties\dnSpy.Scripting.Roslyn.Resources.ru.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Scripting.Roslyn.Resources.zh-CN.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Scripting.Roslyn.Resources.pt-PT.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Scripting.Roslyn.Resources.de.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Scripting.Roslyn.Resources.es-ES.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Scripting.Roslyn.Resources.hu.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Scripting.Roslyn.Resources.fr.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Scripting.Roslyn.Resources.it.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Scripting.Roslyn.Resources.uk.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Scripting.Roslyn.Resources.fa.resx" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="project.json" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\..\dnSpy\dnSpy\Properties\AssemblyInfo.Shared.cs">
|
||||
<Link>Properties\AssemblyInfo.Shared.cs</Link>
|
||||
</Compile>
|
||||
<ProjectReference Include="..\..\dnSpy\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj" />
|
||||
<ProjectReference Include="..\..\dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj" />
|
||||
<ProjectReference Include="..\..\Libraries\dnlib\src\dnlib.csproj" />
|
||||
<ProjectReference Include="..\..\dnSpy\Roslyn\dnSpy.Roslyn\dnSpy.Roslyn.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Page Include="Common\ScriptControl.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Update="Properties\dnSpy.Scripting.Roslyn.Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>dnSpy.Scripting.Roslyn.Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Update="Properties\dnSpy.Scripting.Roslyn.Resources.resx">
|
||||
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>dnSpy.Scripting.Roslyn.Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="$(RoslynVersion)" />
|
||||
<PackageReference Include="Microsoft.VisualStudio.Text.UI.Wpf" Version="$(MSVSTextVersion)" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"Microsoft.CodeAnalysis.CSharp.Scripting": "2.9.0",
|
||||
"Microsoft.VisualStudio.Text.UI.Wpf": "15.5.27130"
|
||||
},
|
||||
"frameworks": {
|
||||
"net471": { }
|
||||
},
|
||||
"runtimes": {
|
||||
"win": { }
|
||||
}
|
||||
}
|
|
@ -1 +1 @@
|
|||
Subproject commit e756d7bf92dd5e4821e8c644803e9a1b88fe0620
|
||||
Subproject commit 53e34c6c5b0f72284d257c6e377cae564e8c9874
|
|
@ -1 +1 @@
|
|||
Subproject commit 4fbb11e6dc762dc26788c1d999cb585038e2b83e
|
||||
Subproject commit 74f940cb89555e0e8a72b20fe64b53b0d51946ed
|
88
dnSpy.sln
88
dnSpy.sln
|
@ -15,101 +15,101 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Examples", "Examples", "{84
|
|||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ILSpy.Decompiler", "ILSpy.Decompiler", "{6C439ABB-7252-4F00-9A21-121C11E98895}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy-x86", "dnSpy\dnSpy-x86\dnSpy-x86.csproj", "{0F407613-E15D-4FB5-89DF-EE866DB6A7EC}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy-x86", "dnSpy\dnSpy-x86\dnSpy-x86.csproj", "{0F407613-E15D-4FB5-89DF-EE866DB6A7EC}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy", "dnSpy\dnSpy\dnSpy.csproj", "{722257A9-1B14-4D63-B886-18A4229AF4EB}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy", "dnSpy\dnSpy\dnSpy.csproj", "{722257A9-1B14-4D63-B886-18A4229AF4EB}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.Console", "dnSpy\dnSpy.Console\dnSpy.Console.csproj", "{DA111693-97C8-413B-9102-4DCBEE8885B7}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Console", "dnSpy\dnSpy.Console\dnSpy.Console.csproj", "{DA111693-97C8-413B-9102-4DCBEE8885B7}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.Decompiler", "dnSpy\dnSpy.Decompiler\dnSpy.Decompiler.csproj", "{9265E4EA-EB00-4CB6-8A9A-608871E24FD0}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Decompiler", "dnSpy\dnSpy.Decompiler\dnSpy.Decompiler.csproj", "{9265E4EA-EB00-4CB6-8A9A-608871E24FD0}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnlib", "Libraries\dnlib\src\dnlib.csproj", "{FDFC1237-143F-4919-8318-4926901F4639}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnlib", "Libraries\dnlib\src\dnlib.csproj", "{FDFC1237-143F-4919-8318-4926901F4639}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.TreeView", "Libraries\ICSharpCode.TreeView\ICSharpCode.TreeView.csproj", "{DDE2A481-8271-4EAC-A330-8FA6A38D13D1}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ICSharpCode.TreeView", "Libraries\ICSharpCode.TreeView\ICSharpCode.TreeView.csproj", "{DDE2A481-8271-4EAC-A330-8FA6A38D13D1}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.Debugger", "Extensions\dnSpy.Debugger\dnSpy.Debugger\dnSpy.Debugger.csproj", "{52995BD1-DB91-4654-89B7-1DEB3B0D3155}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Debugger", "Extensions\dnSpy.Debugger\dnSpy.Debugger\dnSpy.Debugger.csproj", "{52995BD1-DB91-4654-89B7-1DEB3B0D3155}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Example1.Extension", "Extensions\Examples\Example1.Extension\Example1.Extension.csproj", "{B24AAB0F-CA85-4D85-8B46-10D634896E2A}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Example1.Extension", "Extensions\Examples\Example1.Extension\Example1.Extension.csproj", "{B24AAB0F-CA85-4D85-8B46-10D634896E2A}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Example2.Extension", "Extensions\Examples\Example2.Extension\Example2.Extension.csproj", "{4613C8A1-28DC-4586-9F9B-D201864CFE1A}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Example2.Extension", "Extensions\Examples\Example2.Extension\Example2.Extension.csproj", "{4613C8A1-28DC-4586-9F9B-D201864CFE1A}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.Decompiler.ILSpy", "Extensions\ILSpy.Decompiler\dnSpy.Decompiler.ILSpy\dnSpy.Decompiler.ILSpy.csproj", "{D7FE873E-DF22-4F54-AEFA-BCF33AFD7E05}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Decompiler.ILSpy", "Extensions\ILSpy.Decompiler\dnSpy.Decompiler.ILSpy\dnSpy.Decompiler.ILSpy.csproj", "{D7FE873E-DF22-4F54-AEFA-BCF33AFD7E05}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.Decompiler", "Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler.csproj", "{984CC812-9470-4A13-AFF9-CC44068D666C}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ICSharpCode.Decompiler", "Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler.csproj", "{984CC812-9470-4A13-AFF9-CC44068D666C}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.NRefactory", "Extensions\ILSpy.Decompiler\NRefactory\ICSharpCode.NRefactory\ICSharpCode.NRefactory.csproj", "{3B2A5653-EC97-4001-BB9B-D90F1AF2C371}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ICSharpCode.NRefactory", "Extensions\ILSpy.Decompiler\NRefactory\ICSharpCode.NRefactory\ICSharpCode.NRefactory.csproj", "{3B2A5653-EC97-4001-BB9B-D90F1AF2C371}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.NRefactory.CSharp", "Extensions\ILSpy.Decompiler\NRefactory\ICSharpCode.NRefactory.CSharp\ICSharpCode.NRefactory.CSharp.csproj", "{53DCA265-3C3C-42F9-B647-F72BA678122B}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ICSharpCode.NRefactory.CSharp", "Extensions\ILSpy.Decompiler\NRefactory\ICSharpCode.NRefactory.CSharp\ICSharpCode.NRefactory.CSharp.csproj", "{53DCA265-3C3C-42F9-B647-F72BA678122B}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.NRefactory.VB", "Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\NRefactory.VB\ICSharpCode.NRefactory.VB\ICSharpCode.NRefactory.VB.csproj", "{7B82B671-419F-45F4-B778-D9286F996EFA}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ICSharpCode.NRefactory.VB", "Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\NRefactory.VB\ICSharpCode.NRefactory.VB\ICSharpCode.NRefactory.VB.csproj", "{7B82B671-419F-45F4-B778-D9286F996EFA}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.Analyzer", "Extensions\dnSpy.Analyzer\dnSpy.Analyzer.csproj", "{82E9DEC4-564F-42D5-8856-AA17D3962829}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Analyzer", "Extensions\dnSpy.Analyzer\dnSpy.Analyzer.csproj", "{82E9DEC4-564F-42D5-8856-AA17D3962829}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.AsmEditor", "Extensions\dnSpy.AsmEditor\dnSpy.AsmEditor.csproj", "{87772B51-FA94-47A5-83F4-4E8E69369A2D}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.AsmEditor", "Extensions\dnSpy.AsmEditor\dnSpy.AsmEditor.csproj", "{87772B51-FA94-47A5-83F4-4E8E69369A2D}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.BamlDecompiler", "Extensions\dnSpy.BamlDecompiler\dnSpy.BamlDecompiler.csproj", "{6D647069-5C94-4388-AC0C-E059D125AC51}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.BamlDecompiler", "Extensions\dnSpy.BamlDecompiler\dnSpy.BamlDecompiler.csproj", "{6D647069-5C94-4388-AC0C-E059D125AC51}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.Scripting.Roslyn", "Extensions\dnSpy.Scripting.Roslyn\dnSpy.Scripting.Roslyn.csproj", "{D2EFF1AF-6E3A-4025-9E67-52772384B73F}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Scripting.Roslyn", "Extensions\dnSpy.Scripting.Roslyn\dnSpy.Scripting.Roslyn.csproj", "{D2EFF1AF-6E3A-4025-9E67-52772384B73F}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.Roslyn", "dnSpy\Roslyn\dnSpy.Roslyn\dnSpy.Roslyn.csproj", "{844EEF8A-C7B6-4299-8CF0-4BD21DDDD4A8}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Roslyn", "dnSpy\Roslyn\dnSpy.Roslyn\dnSpy.Roslyn.csproj", "{844EEF8A-C7B6-4299-8CF0-4BD21DDDD4A8}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.Contracts.Logic", "dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj", "{BB748E78-376F-429A-8D83-9A8946EC179F}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Contracts.Logic", "dnSpy\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj", "{BB748E78-376F-429A-8D83-9A8946EC179F}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.Contracts.DnSpy", "dnSpy\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj", "{CB6F6372-9479-41E2-83A8-07854326BCA8}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Contracts.DnSpy", "dnSpy\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj", "{CB6F6372-9479-41E2-83A8-07854326BCA8}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.Decompiler.ILSpy.Core", "Extensions\ILSpy.Decompiler\dnSpy.Decompiler.ILSpy.Core\dnSpy.Decompiler.ILSpy.Core.csproj", "{CE9EC29D-8A2A-41D4-8F82-BF8B536ABC31}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Decompiler.ILSpy.Core", "Extensions\ILSpy.Decompiler\dnSpy.Decompiler.ILSpy.Core\dnSpy.Decompiler.ILSpy.Core.csproj", "{CE9EC29D-8A2A-41D4-8F82-BF8B536ABC31}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.Roslyn.Internal", "dnSpy\Roslyn\dnSpy.Roslyn.Internal\dnSpy.Roslyn.Internal.csproj", "{C5F25F3E-B8EF-4A8F-8BD6-5B9863A56FE2}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Roslyn.Internal", "dnSpy\Roslyn\dnSpy.Roslyn.Internal\dnSpy.Roslyn.Internal.csproj", "{C5F25F3E-B8EF-4A8F-8BD6-5B9863A56FE2}"
|
||||
EndProject
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "dnSpy.Roslyn.VisualBasic.Internal", "dnSpy\Roslyn\dnSpy.Roslyn.VisualBasic.Internal\dnSpy.Roslyn.VisualBasic.Internal.vbproj", "{8B774E77-C956-4ABC-BBFE-8756CB4111C8}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Roslyn.VisualBasic.Internal", "dnSpy\Roslyn\dnSpy.Roslyn.VisualBasic.Internal\dnSpy.Roslyn.VisualBasic.Internal.vbproj", "{8B774E77-C956-4ABC-BBFE-8756CB4111C8}"
|
||||
EndProject
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "dnSpy.Roslyn.VisualBasic.EditorFeatures", "dnSpy\Roslyn\dnSpy.Roslyn.VisualBasic.EditorFeatures\dnSpy.Roslyn.VisualBasic.EditorFeatures.vbproj", "{30057546-DED0-450E-89C3-0354B4FF9CCD}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Roslyn.VisualBasic.EditorFeatures", "dnSpy\Roslyn\dnSpy.Roslyn.VisualBasic.EditorFeatures\dnSpy.Roslyn.VisualBasic.EditorFeatures.vbproj", "{30057546-DED0-450E-89C3-0354B4FF9CCD}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.Roslyn.EditorFeatures", "dnSpy\Roslyn\dnSpy.Roslyn.EditorFeatures\dnSpy.Roslyn.EditorFeatures.csproj", "{F10A60DA-4716-45F6-AB2E-4690440C0C7C}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Roslyn.EditorFeatures", "dnSpy\Roslyn\dnSpy.Roslyn.EditorFeatures\dnSpy.Roslyn.EditorFeatures.csproj", "{F10A60DA-4716-45F6-AB2E-4690440C0C7C}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.Images", "dnSpy\dnSpy.Images\dnSpy.Images.csproj", "{83BBD76B-4ECD-42E1-BF9C-AF8114E52317}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Images", "dnSpy\dnSpy.Images\dnSpy.Images.csproj", "{83BBD76B-4ECD-42E1-BF9C-AF8114E52317}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.Debugger.DotNet.CorDebug", "Extensions\dnSpy.Debugger\dnSpy.Debugger.DotNet.CorDebug\dnSpy.Debugger.DotNet.CorDebug.csproj", "{AD6EE4B9-7EE6-4FF0-869E-32DADCAA1E4A}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Debugger.DotNet.CorDebug", "Extensions\dnSpy.Debugger\dnSpy.Debugger.DotNet.CorDebug\dnSpy.Debugger.DotNet.CorDebug.csproj", "{AD6EE4B9-7EE6-4FF0-869E-32DADCAA1E4A}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.Contracts.Debugger", "dnSpy\dnSpy.Contracts.Debugger\dnSpy.Contracts.Debugger.csproj", "{C92217E8-A68E-4F8D-9B98-D7328E89DAF1}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Contracts.Debugger", "dnSpy\dnSpy.Contracts.Debugger\dnSpy.Contracts.Debugger.csproj", "{C92217E8-A68E-4F8D-9B98-D7328E89DAF1}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.Contracts.Debugger.DotNet.CorDebug", "dnSpy\dnSpy.Contracts.Debugger.DotNet.CorDebug\dnSpy.Contracts.Debugger.DotNet.CorDebug.csproj", "{A6D1AA27-ABDD-4832-B4D0-94E4B175C98F}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Contracts.Debugger.DotNet.CorDebug", "dnSpy\dnSpy.Contracts.Debugger.DotNet.CorDebug\dnSpy.Contracts.Debugger.DotNet.CorDebug.csproj", "{A6D1AA27-ABDD-4832-B4D0-94E4B175C98F}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.Diagnostics.Runtime", "Extensions\dnSpy.Debugger\clrmd\src\Microsoft.Diagnostics.Runtime\Microsoft.Diagnostics.Runtime.csproj", "{A82126CA-23AA-41F1-8586-A5938D44D0A7}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Diagnostics.Runtime", "Extensions\dnSpy.Debugger\clrmd\src\Microsoft.Diagnostics.Runtime\Microsoft.Diagnostics.Runtime.csproj", "{A82126CA-23AA-41F1-8586-A5938D44D0A7}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.Debugger.DotNet", "Extensions\dnSpy.Debugger\dnSpy.Debugger.DotNet\dnSpy.Debugger.DotNet.csproj", "{8EA4B210-37BE-478F-AB0E-8C8C3E016114}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Debugger.DotNet", "Extensions\dnSpy.Debugger\dnSpy.Debugger.DotNet\dnSpy.Debugger.DotNet.csproj", "{8EA4B210-37BE-478F-AB0E-8C8C3E016114}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.Contracts.Debugger.DotNet", "dnSpy\dnSpy.Contracts.Debugger.DotNet\dnSpy.Contracts.Debugger.DotNet.csproj", "{2376E072-101F-4900-8770-79C6DFFBD0FB}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Contracts.Debugger.DotNet", "dnSpy\dnSpy.Contracts.Debugger.DotNet\dnSpy.Contracts.Debugger.DotNet.csproj", "{2376E072-101F-4900-8770-79C6DFFBD0FB}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Roslyn", "Roslyn", "{379DB01F-CA3E-4E34-85F1-586EB20583E0}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.Debugger.DotNet.Metadata", "Extensions\dnSpy.Debugger\dnSpy.Debugger.DotNet.Metadata\dnSpy.Debugger.DotNet.Metadata.csproj", "{FCD8913D-85A0-479E-9689-70FEA52C6DCB}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Debugger.DotNet.Metadata", "Extensions\dnSpy.Debugger\dnSpy.Debugger.DotNet.Metadata\dnSpy.Debugger.DotNet.Metadata.csproj", "{FCD8913D-85A0-479E-9689-70FEA52C6DCB}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.Debugger.DotNet.Interpreter", "Extensions\dnSpy.Debugger\dnSpy.Debugger.DotNet.Interpreter\dnSpy.Debugger.DotNet.Interpreter.csproj", "{B89E5078-FF71-4FB2-B99F-A790BD94AFD7}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Debugger.DotNet.Interpreter", "Extensions\dnSpy.Debugger\dnSpy.Debugger.DotNet.Interpreter\dnSpy.Debugger.DotNet.Interpreter.csproj", "{B89E5078-FF71-4FB2-B99F-A790BD94AFD7}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ExpressionCompiler", "ExpressionCompiler", "{AF34FB07-B743-4A53-B430-53EFAA27FB92}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExpressionCompiler", "dnSpy\Roslyn\Roslyn.ExpressionCompiler\Core\ExpressionCompiler\ExpressionCompiler.csproj", "{255C3FEC-91B5-4E11-AAF8-9B102EA57634}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ExpressionCompiler", "dnSpy\Roslyn\Roslyn.ExpressionCompiler\Core\ExpressionCompiler\ExpressionCompiler.csproj", "{255C3FEC-91B5-4E11-AAF8-9B102EA57634}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CSharpExpressionCompiler", "dnSpy\Roslyn\Roslyn.ExpressionCompiler\CSharp\CSharpExpressionCompiler\CSharpExpressionCompiler.csproj", "{DAD4C898-6CFF-485E-AB51-8D7E56F4C672}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CSharpExpressionCompiler", "dnSpy\Roslyn\Roslyn.ExpressionCompiler\CSharp\CSharpExpressionCompiler\CSharpExpressionCompiler.csproj", "{DAD4C898-6CFF-485E-AB51-8D7E56F4C672}"
|
||||
EndProject
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "BasicExpressionCompiler", "dnSpy\Roslyn\Roslyn.ExpressionCompiler\VisualBasic\BasicExpressionCompiler\BasicExpressionCompiler.vbproj", "{4B38BFCF-4253-48E7-8AD2-861AE12F41DF}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BasicExpressionCompiler", "dnSpy\Roslyn\Roslyn.ExpressionCompiler\VisualBasic\BasicExpressionCompiler\BasicExpressionCompiler.vbproj", "{4B38BFCF-4253-48E7-8AD2-861AE12F41DF}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.Debugger.DotNet.Mono", "Extensions\dnSpy.Debugger\dnSpy.Debugger.DotNet.Mono\dnSpy.Debugger.DotNet.Mono.csproj", "{083DE7BE-F315-4C7A-98B8-775428D4D20D}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Debugger.DotNet.Mono", "Extensions\dnSpy.Debugger\dnSpy.Debugger.DotNet.Mono\dnSpy.Debugger.DotNet.Mono.csproj", "{083DE7BE-F315-4C7A-98B8-775428D4D20D}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.Contracts.Debugger.DotNet.Mono", "dnSpy\dnSpy.Contracts.Debugger.DotNet.Mono\dnSpy.Contracts.Debugger.DotNet.Mono.csproj", "{7B58F062-7ED0-4AF1-90BB-BEB509E3BD68}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Contracts.Debugger.DotNet.Mono", "dnSpy\dnSpy.Contracts.Debugger.DotNet.Mono\dnSpy.Contracts.Debugger.DotNet.Mono.csproj", "{7B58F062-7ED0-4AF1-90BB-BEB509E3BD68}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mono.Debugger.Soft", "Extensions\dnSpy.Debugger\Mono.Debugger.Soft\Mono.Debugger.Soft.csproj", "{57B5039F-30CC-4EAA-9D55-1B9A07AC8A69}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Mono.Debugger.Soft", "Extensions\dnSpy.Debugger\Mono.Debugger.Soft\Mono.Debugger.Soft.csproj", "{57B5039F-30CC-4EAA-9D55-1B9A07AC8A69}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{C6E9757D-E267-4CEF-B550-EF864373A92E}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MakeEverythingPublic", "MakeEverythingPublic", "{70D87176-4157-40DB-924A-8CBC7D744FDF}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MakeEverythingPublic", "Build\MakeEverythingPublic\MakeEverythingPublic.csproj", "{737693E5-CBE3-4D1D-877C-790E6E6E6E8E}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MakeEverythingPublic", "Build\MakeEverythingPublic\MakeEverythingPublic.csproj", "{737693E5-CBE3-4D1D-877C-790E6E6E6E8E}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.Roslyn.CSharp.EditorFeatures", "dnSpy\Roslyn\dnSpy.Roslyn.CSharp.EditorFeatures\dnSpy.Roslyn.CSharp.EditorFeatures.csproj", "{B7CD7DF8-1723-43D2-8B8A-063BA033E203}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Roslyn.CSharp.EditorFeatures", "dnSpy\Roslyn\dnSpy.Roslyn.CSharp.EditorFeatures\dnSpy.Roslyn.CSharp.EditorFeatures.csproj", "{B7CD7DF8-1723-43D2-8B8A-063BA033E203}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dnSpy.Roslyn.CSharp.Internal", "dnSpy\Roslyn\dnSpy.Roslyn.CSharp.Internal\dnSpy.Roslyn.CSharp.Internal.csproj", "{08AA97E1-0DEC-46B3-8103-CCFCEFC5825A}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "dnSpy.Roslyn.CSharp.Internal", "dnSpy\Roslyn\dnSpy.Roslyn.CSharp.Internal\dnSpy.Roslyn.CSharp.Internal.csproj", "{08AA97E1-0DEC-46B3-8103-CCFCEFC5825A}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 55b6b45ec017841e674c053c9d7172e369256516
|
||||
Subproject commit 5bef1abe250d273d28028583aca4bdffe1710c10
|
|
@ -1,21 +1,4 @@
|
|||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: AssemblyTitle("dnSpy.Roslyn.CSharp.EditorFeatures")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("dnSpy.Roslyn.CSharp.EditorFeatures")]
|
||||
[assembly: AssemblyCopyright("")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
[assembly: AssemblyInformationalVersion("1.0.0.0")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
// Needed so it can safely add this asm to the MEF AggregateCatalog without using a string reference (weak reference)
|
||||
[assembly: InternalsVisibleTo("dnSpy, PublicKey=0024000004800000940000000602000000240000525341310004000001000100858d4f2519af95faeca8d359daa2078b20826765450f330daff3c5ec378adf9eb8e168eff8069ba51e15c1992d0d72b73129ed7a014f62863fa80a80dd9b010b8211c4d4c70ed26b9b65370007b0341685c98cc4cd2d16814d9581db82b382fb8ee838e1b8a2bd1c759e43ddda209e35cde530a7ba6a517787c04a3f283ea1b5")]
|
||||
|
|
|
@ -1,67 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{B7CD7DF8-1723-43D2-8B8A-063BA033E203}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>dnSpy.Roslyn.CSharp.EditorFeatures</RootNamespace>
|
||||
<AssemblyName>dnSpy.Roslyn.CSharp.EditorFeatures</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
<MakeEverythingPublicAssemblies>Microsoft.CodeAnalysis.CSharp;Microsoft.CodeAnalysis.CSharp.Workspaces;Microsoft.CodeAnalysis.CSharp.Features</MakeEverythingPublicAssemblies>
|
||||
<MakeEverythingPublicIVTString>$(AssemblyName)</MakeEverythingPublicIVTString>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\..\dnSpy\bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>..\..\dnSpy\bin\Debug\dnSpy.Roslyn.CSharp.EditorFeatures.xml</DocumentationFile>
|
||||
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>..\..\dnSpy\bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>..\..\dnSpy\bin\Release\dnSpy.Roslyn.CSharp.EditorFeatures.xml</DocumentationFile>
|
||||
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Dummy.cs" />
|
||||
<Compile Include="MakeEverythingPublic.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="TextStructureNavigation\TextStructureNavigatorProvider.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\dnSpy.Roslyn.EditorFeatures\dnSpy.Roslyn.EditorFeatures.csproj">
|
||||
<Project>{f10a60da-4716-45f6-ab2e-4690440c0c7c}</Project>
|
||||
<Name>dnSpy.Roslyn.EditorFeatures</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\dnSpy.Roslyn.Internal\dnSpy.Roslyn.Internal.csproj">
|
||||
<Project>{c5f25f3e-b8ef-4a8f-8bd6-5b9863a56fe2}</Project>
|
||||
<Name>dnSpy.Roslyn.Internal</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\dnSpy.Roslyn\dnSpy.Roslyn.csproj">
|
||||
<Project>{844eef8a-c7b6-4299-8cf0-4bd21dddd4a8}</Project>
|
||||
<Name>dnSpy.Roslyn</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="project.json" />
|
||||
</ItemGroup>
|
||||
|
||||
<Import Project="$(MSBuildProjectDirectory)\..\..\..\Build\MakeEverythingPublic\MakeEverythingPublic.tasks" />
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\dnSpy.Roslyn.EditorFeatures\dnSpy.Roslyn.EditorFeatures.csproj" />
|
||||
<ProjectReference Include="..\dnSpy.Roslyn.Internal\dnSpy.Roslyn.Internal.csproj" />
|
||||
<ProjectReference Include="..\dnSpy.Roslyn\dnSpy.Roslyn.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Features" Version="$(RoslynVersion)" />
|
||||
<PackageReference Include="Microsoft.VisualStudio.Text.UI.Wpf" Version="$(MSVSTextVersion)" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"Microsoft.CodeAnalysis.CSharp.Features": "2.9.0",
|
||||
"Microsoft.VisualStudio.Text.UI.Wpf": "15.5.27130"
|
||||
},
|
||||
"frameworks": {
|
||||
"net471": { }
|
||||
},
|
||||
"runtimes": {
|
||||
"win": { }
|
||||
}
|
||||
}
|
|
@ -1,19 +1,3 @@
|
|||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
[assembly: AssemblyTitle("dnSpy.Roslyn.CSharp.Internal")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("dnSpy.Roslyn.CSharp.Internal")]
|
||||
[assembly: AssemblyCopyright("")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
[assembly: AssemblyInformationalVersion("1.0.0.0")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
||||
[assembly: InternalsVisibleTo("dnSpy.Roslyn, PublicKey=0024000004800000940000000602000000240000525341310004000001000100858d4f2519af95faeca8d359daa2078b20826765450f330daff3c5ec378adf9eb8e168eff8069ba51e15c1992d0d72b73129ed7a014f62863fa80a80dd9b010b8211c4d4c70ed26b9b65370007b0341685c98cc4cd2d16814d9581db82b382fb8ee838e1b8a2bd1c759e43ddda209e35cde530a7ba6a517787c04a3f283ea1b5")]
|
||||
|
|
|
@ -1,61 +1,23 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{08AA97E1-0DEC-46B3-8103-CCFCEFC5825A}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>dnSpy.Roslyn.CSharp.Internal</RootNamespace>
|
||||
<AssemblyName>dnSpy.Roslyn.CSharp.Internal</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
<MakeEverythingPublicAssemblies>Microsoft.CodeAnalysis.Workspaces;Microsoft.CodeAnalysis.CSharp;Microsoft.CodeAnalysis.CSharp.Workspaces;Microsoft.CodeAnalysis.CSharp.Features</MakeEverythingPublicAssemblies>
|
||||
<MakeEverythingPublicIVTString>$(AssemblyName)</MakeEverythingPublicIVTString>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\..\dnSpy\bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>..\..\dnSpy\bin\Debug\dnSpy.Roslyn.CSharp.Internal.xml</DocumentationFile>
|
||||
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>..\..\dnSpy\bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>..\..\dnSpy\bin\Release\dnSpy.Roslyn.CSharp.Internal.xml</DocumentationFile>
|
||||
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="MakeEverythingPublic.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="QuickInfo\SemanticQuickInfoProvider.cs" />
|
||||
<Compile Include="QuickInfo\SyntacticQuickInfoProvider.cs" />
|
||||
<Compile Include="SmartIndent\CSharpIndentationService.cs" />
|
||||
<Compile Include="SmartIndent\CSharpIndentationService.Indenter.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\dnSpy.Roslyn.Internal\dnSpy.Roslyn.Internal.csproj">
|
||||
<Project>{c5f25f3e-b8ef-4a8f-8bd6-5b9863a56fe2}</Project>
|
||||
<Name>dnSpy.Roslyn.Internal</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="project.json" />
|
||||
</ItemGroup>
|
||||
|
||||
<Import Project="$(MSBuildProjectDirectory)\..\..\..\Build\MakeEverythingPublic\MakeEverythingPublic.tasks" />
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\dnSpy.Roslyn.Internal\dnSpy.Roslyn.Internal.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Features" Version="$(RoslynVersion)" />
|
||||
<PackageReference Include="Microsoft.VisualStudio.Text.UI.Wpf" Version="$(MSVSTextVersion)" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"Microsoft.CodeAnalysis.CSharp.Features": "2.9.0",
|
||||
"Microsoft.VisualStudio.Text.UI.Wpf": "15.5.27130"
|
||||
},
|
||||
"frameworks": {
|
||||
"net471": { }
|
||||
},
|
||||
"runtimes": {
|
||||
"win": { }
|
||||
}
|
||||
}
|
|
@ -1,21 +1,4 @@
|
|||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: AssemblyTitle("dnSpy.Roslyn.EditorFeatures")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("dnSpy.Roslyn.EditorFeatures")]
|
||||
[assembly: AssemblyCopyright("")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
[assembly: AssemblyInformationalVersion("1.0.0.0")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
// Needed so it can safely add this asm to the MEF AggregateCatalog without using a string reference (weak reference)
|
||||
[assembly: InternalsVisibleTo("dnSpy, PublicKey=0024000004800000940000000602000000240000525341310004000001000100858d4f2519af95faeca8d359daa2078b20826765450f330daff3c5ec378adf9eb8e168eff8069ba51e15c1992d0d72b73129ed7a014f62863fa80a80dd9b010b8211c4d4c70ed26b9b65370007b0341685c98cc4cd2d16814d9581db82b382fb8ee838e1b8a2bd1c759e43ddda209e35cde530a7ba6a517787c04a3f283ea1b5")]
|
||||
|
|
|
@ -1,78 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{F10A60DA-4716-45F6-AB2E-4690440C0C7C}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>dnSpy.Roslyn.EditorFeatures</RootNamespace>
|
||||
<AssemblyName>dnSpy.Roslyn.EditorFeatures</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
<MakeEverythingPublicAssemblies>Microsoft.CodeAnalysis.Workspaces</MakeEverythingPublicAssemblies>
|
||||
<MakeEverythingPublicIVTString>$(AssemblyName)</MakeEverythingPublicIVTString>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\..\dnSpy\bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>..\..\dnSpy\bin\Debug\dnSpy.Roslyn.EditorFeatures.xml</DocumentationFile>
|
||||
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
||||
<NoWarn>CS0436</NoWarn>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>..\..\dnSpy\bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>..\..\dnSpy\bin\Release\dnSpy.Roslyn.EditorFeatures.xml</DocumentationFile>
|
||||
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
||||
<NoWarn>CS0436</NoWarn>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Dummy.cs" />
|
||||
<Compile Include="EditorFeaturesResources.cs" />
|
||||
<Compile Include="Editor\ContentTypeNames.cs" />
|
||||
<Compile Include="Extensions\Extensions2.cs" />
|
||||
<Compile Include="Extensions\ITextSnapshotLineExtensions.cs" />
|
||||
<Compile Include="Extensions\TextSpanExtensions.cs" />
|
||||
<Compile Include="Host\IWaitContext.cs" />
|
||||
<Compile Include="Host\IWaitIndicator.cs" />
|
||||
<Compile Include="Host\ProgressTracker.cs" />
|
||||
<Compile Include="Host\WaitIndicator.cs" />
|
||||
<Compile Include="MakeEverythingPublic.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="SmartIndent\SmartIndent.cs" />
|
||||
<Compile Include="SmartIndent\SmartIndentExtensions.cs" />
|
||||
<Compile Include="SmartIndent\SmartIndentProvider.cs" />
|
||||
<Compile Include="TextStructureNavigation\AbstractTextStructureNavigatorProvider.cs" />
|
||||
<Compile Include="TextStructureNavigation\AbstractTextStructureNavigatorProvider.TextStructureNavigator.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\dnSpy.Roslyn.Internal\dnSpy.Roslyn.Internal.csproj">
|
||||
<Project>{c5f25f3e-b8ef-4a8f-8bd6-5b9863a56fe2}</Project>
|
||||
<Name>dnSpy.Roslyn.Internal</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\dnSpy.Roslyn\dnSpy.Roslyn.csproj">
|
||||
<Project>{844eef8a-c7b6-4299-8cf0-4bd21dddd4a8}</Project>
|
||||
<Name>dnSpy.Roslyn</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="project.json" />
|
||||
</ItemGroup>
|
||||
|
||||
<Import Project="$(MSBuildProjectDirectory)\..\..\..\Build\MakeEverythingPublic\MakeEverythingPublic.tasks" />
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\dnSpy.Roslyn.Internal\dnSpy.Roslyn.Internal.csproj" />
|
||||
<ProjectReference Include="..\dnSpy.Roslyn\dnSpy.Roslyn.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.Features" Version="$(RoslynVersion)" />
|
||||
<PackageReference Include="Microsoft.VisualStudio.Text.UI.Wpf" Version="$(MSVSTextVersion)" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"Microsoft.CodeAnalysis.Features": "2.9.0",
|
||||
"Microsoft.VisualStudio.Text.UI.Wpf": "15.5.27130"
|
||||
},
|
||||
"frameworks": {
|
||||
"net471": { }
|
||||
},
|
||||
"runtimes": {
|
||||
"win": { }
|
||||
}
|
||||
}
|
|
@ -1,21 +1,5 @@
|
|||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
[assembly: AssemblyTitle("dnSpy.Roslyn.Internal")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("dnSpy.Roslyn.Internal")]
|
||||
[assembly: AssemblyCopyright("")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
[assembly: AssemblyInformationalVersion("1.0.0.0")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
||||
[assembly: InternalsVisibleTo("dnSpy.Roslyn, PublicKey=0024000004800000940000000602000000240000525341310004000001000100858d4f2519af95faeca8d359daa2078b20826765450f330daff3c5ec378adf9eb8e168eff8069ba51e15c1992d0d72b73129ed7a014f62863fa80a80dd9b010b8211c4d4c70ed26b9b65370007b0341685c98cc4cd2d16814d9581db82b382fb8ee838e1b8a2bd1c759e43ddda209e35cde530a7ba6a517787c04a3f283ea1b5")]
|
||||
[assembly: InternalsVisibleTo("dnSpy.Roslyn.CSharp.Internal, PublicKey=0024000004800000940000000602000000240000525341310004000001000100858d4f2519af95faeca8d359daa2078b20826765450f330daff3c5ec378adf9eb8e168eff8069ba51e15c1992d0d72b73129ed7a014f62863fa80a80dd9b010b8211c4d4c70ed26b9b65370007b0341685c98cc4cd2d16814d9581db82b382fb8ee838e1b8a2bd1c759e43ddda209e35cde530a7ba6a517787c04a3f283ea1b5")]
|
||||
[assembly: InternalsVisibleTo("dnSpy.Roslyn.VisualBasic.Internal, PublicKey=0024000004800000940000000602000000240000525341310004000001000100858d4f2519af95faeca8d359daa2078b20826765450f330daff3c5ec378adf9eb8e168eff8069ba51e15c1992d0d72b73129ed7a014f62863fa80a80dd9b010b8211c4d4c70ed26b9b65370007b0341685c98cc4cd2d16814d9581db82b382fb8ee838e1b8a2bd1c759e43ddda209e35cde530a7ba6a517787c04a3f283ea1b5")]
|
||||
|
|
|
@ -1,71 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{C5F25F3E-B8EF-4A8F-8BD6-5B9863A56FE2}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>dnSpy.Roslyn.Internal</RootNamespace>
|
||||
<AssemblyName>dnSpy.Roslyn.Internal</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
<MakeEverythingPublicAssemblies>Microsoft.CodeAnalysis.Features;Microsoft.CodeAnalysis.Workspaces</MakeEverythingPublicAssemblies>
|
||||
<MakeEverythingPublicIVTString>$(AssemblyName)</MakeEverythingPublicIVTString>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\..\dnSpy\bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>..\..\dnSpy\bin\Debug\dnSpy.Roslyn.Internal.xml</DocumentationFile>
|
||||
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>..\..\dnSpy\bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>..\..\dnSpy\bin\Release\dnSpy.Roslyn.Internal.xml</DocumentationFile>
|
||||
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="GlyphExtensions.cs" />
|
||||
<Compile Include="MakeEverythingPublic.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="QuickInfo\ExportQuickInfoProviderAttribute.cs" />
|
||||
<Compile Include="QuickInfo\IQuickInfoProvider.cs" />
|
||||
<Compile Include="QuickInfo\PredefinedQuickInfoProviderNames.cs" />
|
||||
<Compile Include="QuickInfo\Providers\AbstractQuickInfoProvider.cs" />
|
||||
<Compile Include="QuickInfo\Providers\AbstractSemanticQuickInfoProvider.cs" />
|
||||
<Compile Include="QuickInfo\Providers\AbstractSemanticQuickInfoProvider.ErrorVisitor.cs" />
|
||||
<Compile Include="QuickInfo\Providers\AbstractSemanticQuickInfoProvider.SymbolComparer.cs" />
|
||||
<Compile Include="QuickInfo\QuickInfoContent.cs" />
|
||||
<Compile Include="QuickInfo\QuickInfoItem.cs" />
|
||||
<Compile Include="QuickInfo\QuickInfoService.cs" />
|
||||
<Compile Include="RoslynGlyph.cs" />
|
||||
<Compile Include="SignatureHelp\SignatureHelpItem.cs" />
|
||||
<Compile Include="SignatureHelp\SignatureHelpItems.cs" />
|
||||
<Compile Include="SignatureHelp\SignatureHelpParameter.cs" />
|
||||
<Compile Include="SignatureHelp\SignatureHelpService.cs" />
|
||||
<Compile Include="SignatureHelp\SignatureHelpService.Roslyn.cs" />
|
||||
<Compile Include="SmartIndent\AbstractIndentationService.AbstractIndenter.cs" />
|
||||
<Compile Include="SmartIndent\AbstractIndentationService.cs" />
|
||||
<Compile Include="SmartIndent\IIndentationService.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="project.json" />
|
||||
</ItemGroup>
|
||||
|
||||
<Import Project="$(MSBuildProjectDirectory)\..\..\..\Build\MakeEverythingPublic\MakeEverythingPublic.tasks" />
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.Features" Version="$(RoslynVersion)" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"Microsoft.CodeAnalysis.Features": "2.9.0"
|
||||
},
|
||||
"frameworks": {
|
||||
"net471": { }
|
||||
},
|
||||
"runtimes": {
|
||||
"win": { }
|
||||
}
|
||||
}
|
|
@ -1,20 +1,4 @@
|
|||
Imports System.Reflection
|
||||
Imports System.Resources
|
||||
Imports System.Runtime.CompilerServices
|
||||
Imports System.Runtime.InteropServices
|
||||
Imports System.Runtime.CompilerServices
|
||||
|
||||
<Assembly: AssemblyTitle("dnSpy.Roslyn.VisualBasic.EditorFeatures")>
|
||||
<Assembly: AssemblyDescription("")>
|
||||
<assembly: AssemblyConfiguration("")>
|
||||
<Assembly: AssemblyCompany("")>
|
||||
<Assembly: AssemblyProduct("dnSpy.Roslyn.VisualBasic.EditorFeatures")>
|
||||
<Assembly: AssemblyCopyright("")>
|
||||
<Assembly: AssemblyTrademark("")>
|
||||
<assembly: AssemblyCulture("")>
|
||||
<assembly: AssemblyVersion("1.0.0.0")>
|
||||
<assembly: AssemblyFileVersion("1.0.0.0")>
|
||||
<assembly: AssemblyInformationalVersion("1.0.0.0")>
|
||||
<Assembly: ComVisible(False)>
|
||||
<assembly: NeutralResourcesLanguage("en")>
|
||||
' Needed so it can safely add this asm to the MEF AggregateCatalog without using a string reference (weak reference)
|
||||
<assembly: InternalsVisibleTo("dnSpy, PublicKey=0024000004800000940000000602000000240000525341310004000001000100858d4f2519af95faeca8d359daa2078b20826765450f330daff3c5ec378adf9eb8e168eff8069ba51e15c1992d0d72b73129ed7a014f62863fa80a80dd9b010b8211c4d4c70ed26b9b65370007b0341685c98cc4cd2d16814d9581db82b382fb8ee838e1b8a2bd1c759e43ddda209e35cde530a7ba6a517787c04a3f283ea1b5")>
|
||||
|
|
|
@ -1,79 +1,43 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{30057546-DED0-450E-89C3-0354B4FF9CCD}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>dnSpy.Roslyn.VisualBasic.EditorFeatures</RootNamespace>
|
||||
<AssemblyName>dnSpy.Roslyn.VisualBasic.EditorFeatures</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<Features>strict</Features>
|
||||
<MyType>Windows</MyType>
|
||||
<MakeEverythingPublicAssemblies>Microsoft.CodeAnalysis.VisualBasic;Microsoft.CodeAnalysis.VisualBasic.Workspaces;Microsoft.CodeAnalysis.VisualBasic.Features</MakeEverythingPublicAssemblies>
|
||||
<MakeEverythingPublicIVTString>$(AssemblyName), PublicKey=0024000004800000940000000602000000240000525341310004000001000100858d4f2519af95faeca8d359daa2078b20826765450f330daff3c5ec378adf9eb8e168eff8069ba51e15c1992d0d72b73129ed7a014f62863fa80a80dd9b010b8211c4d4c70ed26b9b65370007b0341685c98cc4cd2d16814d9581db82b382fb8ee838e1b8a2bd1c759e43ddda209e35cde530a7ba6a517787c04a3f283ea1b5</MakeEverythingPublicIVTString>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<DefineDebug>true</DefineDebug>
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<OutputPath>..\..\dnSpy\bin\Debug\</OutputPath>
|
||||
<DocumentationFile>..\..\dnSpy\bin\Debug\dnSpy.Roslyn.VisualBasic.EditorFeatures.xml</DocumentationFile>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
<DefineConstants />
|
||||
<VBRuntime>Embed</VBRuntime>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<DefineDebug>true</DefineDebug>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<DefineDebug>false</DefineDebug>
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>..\..\dnSpy\bin\Release\</OutputPath>
|
||||
<DocumentationFile>..\..\dnSpy\bin\Release\dnSpy.Roslyn.VisualBasic.EditorFeatures.xml</DocumentationFile>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
<DefineDebug>false</DefineDebug>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<OptionExplicit>On</OptionExplicit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionCompare>Binary</OptionCompare>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionStrict>Off</OptionStrict>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionInfer>On</OptionInfer>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Import Include="Microsoft.VisualBasic" />
|
||||
<Import Include="System" />
|
||||
<Import Include="System.Collections" />
|
||||
<Import Include="System.Collections.Generic" />
|
||||
<Import Include="System.Data" />
|
||||
<Import Include="System.Diagnostics" />
|
||||
<Import Include="System.Linq" />
|
||||
<Import Include="System.Xml.Linq" />
|
||||
<Import Include="System.Threading.Tasks" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Dummy.vb" />
|
||||
<Compile Include="MakeEverythingPublic.vb" />
|
||||
<Compile Include="My Project\AssemblyInfo.vb" />
|
||||
<Compile Include="TextStructureNavigation\TextStructureNavigatorProvider.vb" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="project.json" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\dnSpy.Roslyn.EditorFeatures\dnSpy.Roslyn.EditorFeatures.csproj">
|
||||
<Project>{f10a60da-4716-45f6-ab2e-4690440c0c7c}</Project>
|
||||
<Name>dnSpy.Roslyn.EditorFeatures</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
|
||||
<Import Project="$(MSBuildProjectDirectory)\..\..\..\Build\MakeEverythingPublic\MakeEverythingPublic.tasks" />
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
|
||||
</Project>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\dnSpy.Roslyn.EditorFeatures\dnSpy.Roslyn.EditorFeatures.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic.Features" Version="$(RoslynVersion)" />
|
||||
<PackageReference Include="Microsoft.VisualStudio.Text.UI.Wpf" Version="$(MSVSTextVersion)" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"Microsoft.CodeAnalysis.VisualBasic.Features": "2.9.0",
|
||||
"Microsoft.VisualStudio.Text.UI.Wpf": "15.5.27130"
|
||||
},
|
||||
"frameworks": {
|
||||
"net471": { }
|
||||
},
|
||||
"runtimes": {
|
||||
"win": { }
|
||||
}
|
||||
}
|
|
@ -1,19 +1,3 @@
|
|||
Imports System.Reflection
|
||||
Imports System.Resources
|
||||
Imports System.Runtime.CompilerServices
|
||||
Imports System.Runtime.InteropServices
|
||||
Imports System.Runtime.CompilerServices
|
||||
|
||||
<Assembly: AssemblyTitle("dnSpy.Roslyn.VisualBasic.Internal")>
|
||||
<Assembly: AssemblyDescription("")>
|
||||
<assembly: AssemblyConfiguration("")>
|
||||
<Assembly: AssemblyCompany("")>
|
||||
<Assembly: AssemblyProduct("dnSpy.Roslyn.VisualBasic.Internal")>
|
||||
<Assembly: AssemblyCopyright("")>
|
||||
<Assembly: AssemblyTrademark("")>
|
||||
<assembly: AssemblyCulture("")>
|
||||
<assembly: AssemblyVersion("1.0.0.0")>
|
||||
<assembly: AssemblyFileVersion("1.0.0.0")>
|
||||
<assembly: AssemblyInformationalVersion("1.0.0.0")>
|
||||
<Assembly: ComVisible(False)>
|
||||
<assembly: NeutralResourcesLanguage("en")>
|
||||
<assembly: InternalsVisibleTo("dnSpy.Roslyn, PublicKey=0024000004800000940000000602000000240000525341310004000001000100858d4f2519af95faeca8d359daa2078b20826765450f330daff3c5ec378adf9eb8e168eff8069ba51e15c1992d0d72b73129ed7a014f62863fa80a80dd9b010b8211c4d4c70ed26b9b65370007b0341685c98cc4cd2d16814d9581db82b382fb8ee838e1b8a2bd1c759e43ddda209e35cde530a7ba6a517787c04a3f283ea1b5")>
|
||||
|
|
|
@ -1,82 +1,42 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{8B774E77-C956-4ABC-BBFE-8756CB4111C8}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>dnSpy.Roslyn.VisualBasic.Internal</RootNamespace>
|
||||
<AssemblyName>dnSpy.Roslyn.VisualBasic.Internal</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<Features>strict</Features>
|
||||
<MyType>Windows</MyType>
|
||||
<MakeEverythingPublicAssemblies>Microsoft.CodeAnalysis;Microsoft.CodeAnalysis.Workspaces;Microsoft.CodeAnalysis.Features;Microsoft.CodeAnalysis.VisualBasic;Microsoft.CodeAnalysis.VisualBasic.Features;Microsoft.CodeAnalysis.VisualBasic.Workspaces;</MakeEverythingPublicAssemblies>
|
||||
<MakeEverythingPublicIVTString>$(AssemblyName), PublicKey=0024000004800000940000000602000000240000525341310004000001000100858d4f2519af95faeca8d359daa2078b20826765450f330daff3c5ec378adf9eb8e168eff8069ba51e15c1992d0d72b73129ed7a014f62863fa80a80dd9b010b8211c4d4c70ed26b9b65370007b0341685c98cc4cd2d16814d9581db82b382fb8ee838e1b8a2bd1c759e43ddda209e35cde530a7ba6a517787c04a3f283ea1b5</MakeEverythingPublicIVTString>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<DefineDebug>true</DefineDebug>
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<OutputPath>..\..\dnSpy\bin\Debug\</OutputPath>
|
||||
<DocumentationFile>..\..\dnSpy\bin\Debug\dnSpy.Roslyn.VisualBasic.Internal.xml</DocumentationFile>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
<DefineConstants />
|
||||
<VBRuntime>Embed</VBRuntime>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<DefineDebug>true</DefineDebug>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<DefineDebug>false</DefineDebug>
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>..\..\dnSpy\bin\Release\</OutputPath>
|
||||
<DocumentationFile>..\..\dnSpy\bin\Release\dnSpy.Roslyn.VisualBasic.Internal.xml</DocumentationFile>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
<DefineDebug>false</DefineDebug>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<OptionExplicit>On</OptionExplicit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionCompare>Binary</OptionCompare>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionStrict>Off</OptionStrict>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionInfer>On</OptionInfer>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Import Include="Microsoft.VisualBasic" />
|
||||
<Import Include="System" />
|
||||
<Import Include="System.Collections" />
|
||||
<Import Include="System.Collections.Generic" />
|
||||
<Import Include="System.Data" />
|
||||
<Import Include="System.Diagnostics" />
|
||||
<Import Include="System.Linq" />
|
||||
<Import Include="System.Xml.Linq" />
|
||||
<Import Include="System.Threading.Tasks" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Extensions\EnumerableExtensions2.vb" />
|
||||
<Compile Include="MakeEverythingPublic.vb" />
|
||||
<Compile Include="My Project\AssemblyInfo.vb" />
|
||||
<Compile Include="QuickInfo\SemanticQuickInfoProvider.vb" />
|
||||
<Compile Include="SmartIndent\SpecialFormattingOperation.vb" />
|
||||
<Compile Include="SmartIndent\VisualBasicIndentationService.Indenter.vb" />
|
||||
<Compile Include="SmartIndent\VisualBasicIndentationService.vb" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\dnSpy.Roslyn.Internal\dnSpy.Roslyn.Internal.csproj">
|
||||
<Project>{c5f25f3e-b8ef-4a8f-8bd6-5b9863a56fe2}</Project>
|
||||
<Name>dnSpy.Roslyn.Internal</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="project.json" />
|
||||
</ItemGroup>
|
||||
|
||||
<Import Project="$(MSBuildProjectDirectory)\..\..\..\Build\MakeEverythingPublic\MakeEverythingPublic.tasks" />
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
|
||||
</Project>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\dnSpy.Roslyn.Internal\dnSpy.Roslyn.Internal.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic.Features" Version="$(RoslynVersion)" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"Microsoft.CodeAnalysis.VisualBasic.Features": "2.9.0"
|
||||
},
|
||||
"frameworks": {
|
||||
"net471": { }
|
||||
},
|
||||
"runtimes": {
|
||||
"win": { }
|
||||
}
|
||||
}
|
|
@ -1,17 +1,3 @@
|
|||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: AssemblyTitle("dnSpy.Roslyn")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("dnSpy.Roslyn")]
|
||||
[assembly: AssemblyCopyright("Copyright (C) 2014-2018 de4dot@gmail.com")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
[assembly: InternalsVisibleTo("dnSpy.Roslyn.EditorFeatures, PublicKey=0024000004800000940000000602000000240000525341310004000001000100858d4f2519af95faeca8d359daa2078b20826765450f330daff3c5ec378adf9eb8e168eff8069ba51e15c1992d0d72b73129ed7a014f62863fa80a80dd9b010b8211c4d4c70ed26b9b65370007b0341685c98cc4cd2d16814d9581db82b382fb8ee838e1b8a2bd1c759e43ddda209e35cde530a7ba6a517787c04a3f283ea1b5")]
|
||||
|
|
|
@ -1,265 +1,41 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{844EEF8A-C7B6-4299-8CF0-4BD21DDDD4A8}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>dnSpy.Roslyn</RootNamespace>
|
||||
<AssemblyName>dnSpy.Roslyn</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<Copyright>$(DnSpyAssemblyCopyright)</Copyright>
|
||||
<Version>$(DnSpyAssemblyVersion)</Version>
|
||||
<InformationalVersion>$(DnSpyAssemblyInformationalVersion)</InformationalVersion>
|
||||
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<CodeAnalysisRuleSet>..\..\..\DisableBuggyRoslynAnalyzerThatPreventsCompilingThisProjectRemoveWhenItsNotBuggyAnymore.ruleset</CodeAnalysisRuleSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\..\dnSpy\bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>..\..\dnSpy\bin\Debug\dnSpy.Roslyn.xml</DocumentationFile>
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>..\..\dnSpy\bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>..\..\dnSpy\bin\Release\dnSpy.Roslyn.xml</DocumentationFile>
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="Compiler\CodeEditorOptionsDefinitions.cs" />
|
||||
<Compile Include="Compiler\CSharp\CSharpCompilerSettings.cs" />
|
||||
<Compile Include="Compiler\CSharp\CSharpCompilerSettingsImpl.cs" />
|
||||
<Compile Include="Compiler\CSharp\CSharpCompilerSettingsPage.cs" />
|
||||
<Compile Include="Compiler\CSharp\CSharpCompilerSettingsPageProvider.cs" />
|
||||
<Compile Include="Compiler\CSharp\CSharpLanguageCompiler.cs" />
|
||||
<Compile Include="Compiler\DiagnosticExtensions.cs" />
|
||||
<Compile Include="Compiler\Extensions.cs" />
|
||||
<Compile Include="Compiler\FrameworkDetector.cs" />
|
||||
<Compile Include="Compiler\RoslynCodeDocument.cs" />
|
||||
<Compile Include="Compiler\RoslynLanguageCompiler.cs" />
|
||||
<Compile Include="Compiler\VisualBasic\VisualBasicCompilerSettings.cs" />
|
||||
<Compile Include="Compiler\VisualBasic\VisualBasicCompilerSettingsImpl.cs" />
|
||||
<Compile Include="Compiler\VisualBasic\VisualBasicCompilerSettingsPage.cs" />
|
||||
<Compile Include="Compiler\VisualBasic\VisualBasicCompilerSettingsPageProvider.cs" />
|
||||
<Compile Include="Compiler\VisualBasic\VisualBasicLanguageCompiler.cs" />
|
||||
<Compile Include="Debugger\AliasConstants.cs" />
|
||||
<Compile Include="Debugger\ExpressionCompiler\CSharp\CSharpExpressionCompiler.cs" />
|
||||
<Compile Include="Debugger\ExpressionCompiler\CSharp\GeneratedNames.cs" />
|
||||
<Compile Include="Debugger\ExpressionCompiler\CSharp\MonoGeneratedNames.cs" />
|
||||
<Compile Include="Debugger\ExpressionCompiler\ImageNameUtils.cs" />
|
||||
<Compile Include="Debugger\ExpressionCompiler\LanguageExpressionCompiler.cs" />
|
||||
<Compile Include="Debugger\ExpressionCompiler\RoslynExpressionCompilerMethods.cs" />
|
||||
<Compile Include="Debugger\ExpressionCompiler\VisualBasic\GeneratedNames.cs" />
|
||||
<Compile Include="Debugger\ExpressionCompiler\VisualBasic\VisualBasicExpressionCompiler.cs" />
|
||||
<Compile Include="Debugger\FilterExpressionEvaluator\DbgFilterExpressionEvaluatorImpl.cs" />
|
||||
<Compile Include="Debugger\FilterExpressionEvaluator\EvalDelegateCreator.cs" />
|
||||
<Compile Include="Debugger\Formatters\CSharp\CSharpFormatter.cs" />
|
||||
<Compile Include="Debugger\Formatters\CSharp\CSharpPrimitiveValueFormatter.cs" />
|
||||
<Compile Include="Debugger\Formatters\CSharp\CSharpStackFrameFormatter.cs" />
|
||||
<Compile Include="Debugger\Formatters\CSharp\CSharpTypeFormatter.cs" />
|
||||
<Compile Include="Debugger\Formatters\CSharp\CSharpValueFormatter.cs" />
|
||||
<Compile Include="Debugger\Formatters\CSharp\Operators.cs" />
|
||||
<Compile Include="Debugger\Formatters\DbgValueFormatterOptionsExtensions.cs" />
|
||||
<Compile Include="Debugger\Formatters\DbgValueFormatterTypeOptionsExtensions.cs" />
|
||||
<Compile Include="Debugger\Formatters\DebuggerDisplayAttributeFormatter.cs" />
|
||||
<Compile Include="Debugger\Formatters\EnumInfo.cs" />
|
||||
<Compile Include="Debugger\Formatters\KeyValuePairTypeUtils.cs" />
|
||||
<Compile Include="Debugger\Formatters\LanguageFormatter.cs" />
|
||||
<Compile Include="Debugger\Formatters\ListCache.cs" />
|
||||
<Compile Include="Debugger\Formatters\NullableTypeUtils.cs" />
|
||||
<Compile Include="Debugger\Formatters\NumberUtils.cs" />
|
||||
<Compile Include="Debugger\Formatters\StateMachineUtils.cs" />
|
||||
<Compile Include="Debugger\Formatters\ToStringFormatter.cs" />
|
||||
<Compile Include="Debugger\Formatters\TupleTypeUtils.cs" />
|
||||
<Compile Include="Debugger\Formatters\TypeFormatterOptions.cs" />
|
||||
<Compile Include="Debugger\Formatters\TypeFormatterUtils.cs" />
|
||||
<Compile Include="Debugger\Formatters\ValueFormatterOptions.cs" />
|
||||
<Compile Include="Debugger\Formatters\ValueFormatterOptionsExtensions.cs" />
|
||||
<Compile Include="Debugger\Formatters\ValueFormatterUtils.cs" />
|
||||
<Compile Include="Debugger\Formatters\VisualBasic\Operators.cs" />
|
||||
<Compile Include="Debugger\Formatters\VisualBasic\VisualBasicFormatter.cs" />
|
||||
<Compile Include="Debugger\Formatters\VisualBasic\VisualBasicPrimitiveValueFormatter.cs" />
|
||||
<Compile Include="Debugger\Formatters\VisualBasic\VisualBasicStackFrameFormatter.cs" />
|
||||
<Compile Include="Debugger\Formatters\VisualBasic\VisualBasicTypeFormatter.cs" />
|
||||
<Compile Include="Debugger\Formatters\VisualBasic\VisualBasicValueFormatter.cs" />
|
||||
<Compile Include="Debugger\GetLocalsAssemblyBuilder.cs" />
|
||||
<Compile Include="Debugger\ObjectCache.cs" />
|
||||
<Compile Include="Debugger\StateWithKey.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\AggregateValueNodeProvider.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\ArrayValueNodeProvider.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\ColumnFormatter.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\CSharpDynamicPropertyHelper.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\CSharp\CSharpValueNodeFactory.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\CSharp\CSharpValueNodeProviderFactory.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\CSharp\UnicodeCharacterUtilities.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\DbgDotNetTypeVariablesNode.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\DbgDotNetValueNodeImpl.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\DbgDotNetValueNodeInfo.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\DbgDotNetValueNodeProvider.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\DbgDotNetValueNodeProviderFactory.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\DebuggerTypeProxyFinder.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\DebugViewNoResultsValueNode.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\DynamicMetaObjectProviderDebugViewHelper.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\DynamicViewMembersValueNodeProvider.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\EnumerableDebugViewHelper.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\GeneratedMetadataNames.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\ImageNameUtils.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\InstanceMembersValueNodeProvider.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\LanguageValueNodeFactory.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\MembersValueNodeProvider.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\MemberUtils.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\MemberValueNodeInfo.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\PointerValueNodeProvider.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\ReflectionAssemblyLoader.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\ResultsViewMembersValueNodeProvider.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\ReturnValueColumnFormatter.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\StaticMembersValueNodeProvider.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\SyntheticNullValue.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\TupleField.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\TupleValueNodeProvider.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\VisualBasic\SyntaxFacts.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\VisualBasic\VisualBasicValueNodeFactory.cs" />
|
||||
<Compile Include="Debugger\ValueNodes\VisualBasic\VisualBasicValueNodeProviderFactory.cs" />
|
||||
<Compile Include="Documentation\IRoslynDocumentationProviderFactory.cs" />
|
||||
<Compile Include="Documentation\RoslynDocumentationProvider.cs" />
|
||||
<Compile Include="Documentation\RoslynDocumentationProviderFactory.cs" />
|
||||
<Compile Include="Glyphs\GlyphHelper.cs" />
|
||||
<Compile Include="Intellisense\Completions\Classification\CompletionClassifier.cs" />
|
||||
<Compile Include="Intellisense\Completions\Classification\CompletionKindTextColorHelper.cs" />
|
||||
<Compile Include="Intellisense\Completions\CommandTargetFilter.cs" />
|
||||
<Compile Include="Intellisense\Completions\CompletionImageHelper.cs" />
|
||||
<Compile Include="Intellisense\Completions\CompletionInfo.cs" />
|
||||
<Compile Include="Intellisense\Completions\CompletionKind.cs" />
|
||||
<Compile Include="Intellisense\Completions\CompletionSource.cs" />
|
||||
<Compile Include="Intellisense\Completions\CompletionToolTipProvider.cs" />
|
||||
<Compile Include="Intellisense\Completions\ContentTypeDefinitions.cs" />
|
||||
<Compile Include="Intellisense\Completions\MruCompletionService.cs" />
|
||||
<Compile Include="Intellisense\Completions\RoslynCompletion.cs" />
|
||||
<Compile Include="Intellisense\Completions\RoslynCompletionSet.cs" />
|
||||
<Compile Include="Intellisense\Completions\RoslynIntellisenseFilters.cs" />
|
||||
<Compile Include="Intellisense\QuickInfo\CommandTargetFilter.cs" />
|
||||
<Compile Include="Intellisense\QuickInfo\InformationQuickInfoContentControl.xaml.cs">
|
||||
<Compile Update="Intellisense\QuickInfo\InformationQuickInfoContentControl.xaml.cs">
|
||||
<DependentUpon>InformationQuickInfoContentControl.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Intellisense\QuickInfo\InformationQuickInfoContentVM.cs" />
|
||||
<Compile Include="Intellisense\QuickInfo\QuickInfoContentCreator.cs" />
|
||||
<Compile Include="Intellisense\QuickInfo\QuickInfoSession.cs" />
|
||||
<Compile Include="Intellisense\QuickInfo\QuickInfoSource.cs" />
|
||||
<Compile Include="Intellisense\QuickInfo\QuickInfoState.cs" />
|
||||
<Compile Include="Intellisense\QuickInfo\QuickInfoTriggerService.cs" />
|
||||
<Compile Include="Intellisense\SignatureHelp\CommandTargetFilter.cs" />
|
||||
<Compile Include="Intellisense\SignatureHelp\Parameter.cs" />
|
||||
<Compile Include="Intellisense\SignatureHelp\Signature.cs" />
|
||||
<Compile Include="Intellisense\SignatureHelp\SignatureHelpInfo.cs" />
|
||||
<Compile Include="Intellisense\SignatureHelp\SignatureHelpSession.cs" />
|
||||
<Compile Include="Intellisense\SignatureHelp\SignatureHelpSource.cs" />
|
||||
<Compile Include="Intellisense\SignatureHelp\SignatureHelpTagger.cs" />
|
||||
<Compile Include="Intellisense\SignatureHelp\SignatureHelpTaggerEx.cs" />
|
||||
<Compile Include="Optimizations\FirstUseOptimization.cs" />
|
||||
<Compile Include="Properties\dnSpy.Roslyn.Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>dnSpy.Roslyn.Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Text\Classification\CompletionToolTipTextClassifier.cs" />
|
||||
<Compile Include="Text\Classification\ContentTypeDefinitions.cs" />
|
||||
<Compile Include="Text\Classification\ITaggedTextElementProvider.cs" />
|
||||
<Compile Include="Text\Classification\ITaggedTextElementProviderService.cs" />
|
||||
<Compile Include="Text\Classification\RoslynClassificationTypes.cs" />
|
||||
<Compile Include="Text\Classification\RoslynClassifier.cs" />
|
||||
<Compile Include="Text\Classification\TaggedTextClassifier.cs" />
|
||||
<Compile Include="Text\Classification\TaggedTextClassifierContext.cs" />
|
||||
<Compile Include="Text\Classification\TaggedTextElementProvider.cs" />
|
||||
<Compile Include="Text\Classification\TaggedTextElementProviderService.cs" />
|
||||
<Compile Include="Text\Classification\TextTagsHelper.cs" />
|
||||
<Compile Include="Text\Extensions.cs" />
|
||||
<Compile Include="Text\RoslynContentTypes.cs" />
|
||||
<Compile Include="Text\RoslynDocumentChangedService.cs" />
|
||||
<Compile Include="Text\RoslynMefHostServices.cs" />
|
||||
<Compile Include="Text\Tagging\AsyncTagger.cs" />
|
||||
<Compile Include="Text\Tagging\RoslynTagger.cs" />
|
||||
<Compile Include="Text\Tagging\RoslynTaggerAsyncState.cs" />
|
||||
<Compile Include="Text\Tagging\RoslynTaggerProvider.cs" />
|
||||
<Compile Include="Text\TextBufferSourceTextContainer.cs" />
|
||||
<Compile Include="Text\TextSnapshotSourceText.cs" />
|
||||
<Compile Include="Text\TextSnapshotTextLineCollection.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Include="project.json" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\..\dnSpy\Properties\AssemblyInfo.Shared.cs">
|
||||
<Link>Properties\AssemblyInfo.Shared.cs</Link>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\Extensions\dnSpy.Debugger\dnSpy.Debugger.DotNet.Metadata\dnSpy.Debugger.DotNet.Metadata.csproj">
|
||||
<Project>{FCD8913D-85A0-479E-9689-70FEA52C6DCB}</Project>
|
||||
<Name>dnSpy.Debugger.DotNet.Metadata</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\Libraries\dnlib\src\dnlib.csproj">
|
||||
<Project>{fdfc1237-143f-4919-8318-4926901f4639}</Project>
|
||||
<Name>dnlib</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\dnSpy.Contracts.Debugger.DotNet\dnSpy.Contracts.Debugger.DotNet.csproj">
|
||||
<Project>{2376E072-101F-4900-8770-79C6DFFBD0FB}</Project>
|
||||
<Name>dnSpy.Contracts.Debugger.DotNet</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\dnSpy.Contracts.Debugger\dnSpy.Contracts.Debugger.csproj">
|
||||
<Project>{c92217e8-a68e-4f8d-9b98-d7328e89daf1}</Project>
|
||||
<Name>dnSpy.Contracts.Debugger</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj">
|
||||
<Project>{cb6f6372-9479-41e2-83a8-07854326bca8}</Project>
|
||||
<Name>dnSpy.Contracts.DnSpy</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj">
|
||||
<Project>{bb748e78-376f-429a-8d83-9a8946ec179f}</Project>
|
||||
<Name>dnSpy.Contracts.Logic</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\dnSpy.Roslyn.CSharp.Internal\dnSpy.Roslyn.CSharp.Internal.csproj">
|
||||
<Project>{08aa97e1-0dec-46b3-8103-ccfcefc5825a}</Project>
|
||||
<Name>dnSpy.Roslyn.CSharp.Internal</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\dnSpy.Roslyn.Internal\dnSpy.Roslyn.Internal.csproj">
|
||||
<Project>{c5f25f3e-b8ef-4a8f-8bd6-5b9863a56fe2}</Project>
|
||||
<Name>dnSpy.Roslyn.Internal</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\dnSpy.Roslyn.VisualBasic.Internal\dnSpy.Roslyn.VisualBasic.Internal.vbproj">
|
||||
<Project>{8b774e77-c956-4abc-bbfe-8756cb4111c8}</Project>
|
||||
<Name>dnSpy.Roslyn.VisualBasic.Internal</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Roslyn.ExpressionCompiler\Core\ExpressionCompiler\ExpressionCompiler.csproj">
|
||||
<Project>{255C3FEC-91B5-4E11-AAF8-9B102EA57634}</Project>
|
||||
<Name>ExpressionCompiler</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Roslyn.ExpressionCompiler\CSharp\CSharpExpressionCompiler\CSharpExpressionCompiler.csproj">
|
||||
<Project>{dad4c898-6cff-485e-ab51-8d7e56f4c672}</Project>
|
||||
<Name>CSharpExpressionCompiler</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Roslyn.ExpressionCompiler\VisualBasic\BasicExpressionCompiler\BasicExpressionCompiler.vbproj">
|
||||
<Project>{4b38bfcf-4253-48e7-8ad2-861ae12f41df}</Project>
|
||||
<Name>BasicExpressionCompiler</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\Extensions\dnSpy.Debugger\dnSpy.Debugger.DotNet.Metadata\dnSpy.Debugger.DotNet.Metadata.csproj" />
|
||||
<ProjectReference Include="..\..\..\Libraries\dnlib\src\dnlib.csproj" />
|
||||
<ProjectReference Include="..\..\dnSpy.Contracts.Debugger.DotNet\dnSpy.Contracts.Debugger.DotNet.csproj" />
|
||||
<ProjectReference Include="..\..\dnSpy.Contracts.Debugger\dnSpy.Contracts.Debugger.csproj" />
|
||||
<ProjectReference Include="..\..\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj" />
|
||||
<ProjectReference Include="..\..\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj" />
|
||||
<ProjectReference Include="..\dnSpy.Roslyn.CSharp.Internal\dnSpy.Roslyn.CSharp.Internal.csproj" />
|
||||
<ProjectReference Include="..\dnSpy.Roslyn.Internal\dnSpy.Roslyn.Internal.csproj" />
|
||||
<ProjectReference Include="..\dnSpy.Roslyn.VisualBasic.Internal\dnSpy.Roslyn.VisualBasic.Internal.vbproj" />
|
||||
<ProjectReference Include="..\Roslyn.ExpressionCompiler\Core\ExpressionCompiler\ExpressionCompiler.csproj" />
|
||||
<ProjectReference Include="..\Roslyn.ExpressionCompiler\CSharp\CSharpExpressionCompiler\CSharpExpressionCompiler.csproj" />
|
||||
<ProjectReference Include="..\Roslyn.ExpressionCompiler\VisualBasic\BasicExpressionCompiler\BasicExpressionCompiler.vbproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="PresentationCore" />
|
||||
<Reference Include="PresentationFramework" />
|
||||
|
@ -267,22 +43,7 @@
|
|||
<Reference Include="System.Xaml" />
|
||||
<Reference Include="WindowsBase" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Properties\dnSpy.Roslyn.Resources.resx">
|
||||
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>dnSpy.Roslyn.Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Properties\dnSpy.Roslyn.Resources.ru.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Roslyn.Resources.zh-CN.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Roslyn.Resources.pt-PT.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Roslyn.Resources.de.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Roslyn.Resources.es-ES.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Roslyn.Resources.hu.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Roslyn.Resources.fr.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Roslyn.Resources.it.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Roslyn.Resources.uk.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Roslyn.Resources.fa.resx" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Page Include="Intellisense\QuickInfo\InformationQuickInfoContentControl.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
|
@ -293,6 +54,30 @@
|
|||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Update="Properties\dnSpy.Roslyn.Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>dnSpy.Roslyn.Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Update="Properties\dnSpy.Roslyn.Resources.resx">
|
||||
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>dnSpy.Roslyn.Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Features" Version="$(RoslynVersion)" />
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic.Features" Version="$(RoslynVersion)" />
|
||||
<PackageReference Include="Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime" Version="$(MSVSImagingDesignTimeVersion)" />
|
||||
<PackageReference Include="Microsoft.VisualStudio.Language.Intellisense" Version="$(MSVSIntellisenseVersion)" />
|
||||
<PackageReference Include="Microsoft.VisualStudio.Text.UI.Wpf" Version="$(MSVSTextVersion)" />
|
||||
</ItemGroup>
|
||||
|
||||
<Import Project="..\..\..\EmbedInteropTypes.targets" />
|
||||
</Project>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,15 +0,0 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"Microsoft.CodeAnalysis.CSharp.Features": "2.9.0",
|
||||
"Microsoft.CodeAnalysis.VisualBasic.Features": "2.9.0",
|
||||
"Microsoft.VisualStudio.Text.UI.Wpf": "15.5.27130",
|
||||
"Microsoft.VisualStudio.Language.Intellisense": "15.5.27130",
|
||||
"Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime": "15.0.25726-Preview5"
|
||||
},
|
||||
"frameworks": {
|
||||
"net471": { }
|
||||
},
|
||||
"runtimes": {
|
||||
"win": { }
|
||||
}
|
||||
}
|
|
@ -1,14 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: AssemblyTitle("dnSpy-x86")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("dnSpy-x86")]
|
||||
[assembly: AssemblyCopyright("Copyright (C) 2014-2018 de4dot@gmail.com")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
|
@ -1,59 +1,26 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{0F407613-E15D-4FB5-89DF-EE866DB6A7EC}</ProjectGuid>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<RootNamespace>dnSpy_x86</RootNamespace>
|
||||
<AssemblyName>dnSpy-x86</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<Copyright>$(DnSpyAssemblyCopyright)</Copyright>
|
||||
<Version>$(DnSpyAssemblyVersion)</Version>
|
||||
<InformationalVersion>$(DnSpyAssemblyInformationalVersion)</InformationalVersion>
|
||||
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<OutputPath>..\dnSpy\bin\$(Configuration)\</OutputPath>
|
||||
|
||||
<OutputType>WinExe</OutputType>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
<!-- See dnSpy.csproj for more info -->
|
||||
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\dnSpy\bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>..\dnSpy\bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<StartupObject />
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<ApplicationIcon>..\dnSpy\Images\dnSpy.ico</ApplicationIcon>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<ApplicationManifest>..\dnSpy\app.manifest</ApplicationManifest>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Include="..\dnSpy\App.config">
|
||||
<Link>App.config</Link>
|
||||
|
@ -62,16 +29,9 @@
|
|||
<Link>app.manifest</Link>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\dnSpy\dnSpy.csproj">
|
||||
<Project>{722257a9-1b14-4d63-b886-18a4229af4eb}</Project>
|
||||
<Name>dnSpy</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\dnSpy\dnSpy.csproj" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\dnSpy\Properties\AssemblyInfo.Shared.cs">
|
||||
<Link>Properties\AssemblyInfo.Shared.cs</Link>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -29,11 +29,11 @@ using System.Reflection;
|
|||
using System.Security;
|
||||
using System.Text;
|
||||
using dnlib.DotNet;
|
||||
using dnSpy.Console.Properties;
|
||||
using dnSpy.Contracts.Decompiler;
|
||||
using dnSpy.Contracts.Text;
|
||||
using dnSpy.Contracts.Utilities;
|
||||
using dnSpy.Decompiler.MSBuild;
|
||||
using dnSpy_Console.Properties;
|
||||
|
||||
namespace dnSpy_Console {
|
||||
[Serializable]
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: AssemblyTitle("dnSpy.Console")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("dnSpy.Console")]
|
||||
[assembly: AssemblyCopyright("Copyright (C) 2014-2018 de4dot@gmail.com")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
|
@ -8,7 +8,7 @@
|
|||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace dnSpy_Console.Properties {
|
||||
namespace dnSpy.Console.Properties {
|
||||
using System;
|
||||
|
||||
|
||||
|
@ -19,7 +19,7 @@ namespace dnSpy_Console.Properties {
|
|||
// class via a tool like ResGen or Visual Studio.
|
||||
// To add or remove a member, edit your .ResX file then rerun ResGen
|
||||
// with the /str option, or rebuild your VS project.
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
internal class dnSpy_Console_Resources {
|
||||
|
@ -39,7 +39,7 @@ namespace dnSpy_Console.Properties {
|
|||
internal static global::System.Resources.ResourceManager ResourceManager {
|
||||
get {
|
||||
if (object.ReferenceEquals(resourceMan, null)) {
|
||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("dnSpy_Console.Properties.dnSpy.Console.Resources", typeof(dnSpy_Console_Resources).Assembly);
|
||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("dnSpy.Console.Properties.dnSpy.Console.Resources", typeof(dnSpy_Console_Resources).Assembly);
|
||||
resourceMan = temp;
|
||||
}
|
||||
return resourceMan;
|
||||
|
|
|
@ -1,96 +1,48 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{DA111693-97C8-413B-9102-4DCBEE8885B7}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>dnSpy_Console</RootNamespace>
|
||||
<AssemblyName>dnSpy.Console</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<Copyright>$(DnSpyAssemblyCopyright)</Copyright>
|
||||
<Version>$(DnSpyAssemblyVersion)</Version>
|
||||
<InformationalVersion>$(DnSpyAssemblyInformationalVersion)</InformationalVersion>
|
||||
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
<!-- See dnSpy.csproj for more info -->
|
||||
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\dnSpy\bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>..\dnSpy\bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<OutputPath>..\dnSpy\bin\$(Configuration)\</OutputPath>
|
||||
|
||||
<OutputType>Exe</OutputType>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Properties\dnSpy.Console.Resources.Designer.cs">
|
||||
<Compile Update="Properties\dnSpy.Console.Resources.Designer.cs">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>dnSpy.Console.Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Program.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\Libraries\dnlib\src\dnlib.csproj">
|
||||
<Project>{fdfc1237-143f-4919-8318-4926901f4639}</Project>
|
||||
<Name>dnlib</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj">
|
||||
<Project>{BB748E78-376F-429A-8D83-9A8946EC179F}</Project>
|
||||
<Name>dnSpy.Contracts.Logic</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\dnSpy.Decompiler\dnSpy.Decompiler.csproj">
|
||||
<Project>{9265e4ea-eb00-4cb6-8a9a-608871e24fd0}</Project>
|
||||
<Name>dnSpy.Decompiler</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Properties\dnSpy.Console.Resources.resx">
|
||||
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||
<EmbeddedResource Update="Properties\dnSpy.Console.Resources.resx">
|
||||
<Generator>ResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>dnSpy.Console.Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Properties\dnSpy.Console.Resources.ru.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Console.Resources.zh-CN.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Console.Resources.pt-PT.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Console.Resources.de.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Console.Resources.es-ES.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Console.Resources.hu.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Console.Resources.fr.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Console.Resources.it.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Console.Resources.uk.resx" />
|
||||
<EmbeddedResource Include="Properties\dnSpy.Console.Resources.fa.resx" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Include="..\dnSpy\App.config">
|
||||
<Link>App.config</Link>
|
||||
</None>
|
||||
<Compile Include="..\dnSpy\Properties\AssemblyInfo.Shared.cs">
|
||||
<Link>Properties\AssemblyInfo.Shared.cs</Link>
|
||||
</Compile>
|
||||
<None Include="..\dnSpy\app.manifest">
|
||||
<Link>app.manifest</Link>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\Libraries\dnlib\src\dnlib.csproj" />
|
||||
<ProjectReference Include="..\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj" />
|
||||
<ProjectReference Include="..\dnSpy.Decompiler\dnSpy.Decompiler.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: AssemblyTitle("Debugger")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Debugger (.NET: CorDebug)")]
|
||||
[assembly: AssemblyCopyright("Copyright (C) 2014-2018 de4dot@gmail.com")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
|
@ -1,75 +1,23 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{A6D1AA27-ABDD-4832-B4D0-94E4B175C98F}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>dnSpy.Contracts.Debugger.DotNet.CorDebug</RootNamespace>
|
||||
<AssemblyName>dnSpy.Contracts.Debugger.DotNet.CorDebug</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<Copyright>$(DnSpyAssemblyCopyright)</Copyright>
|
||||
<Version>$(DnSpyAssemblyVersion)</Version>
|
||||
<InformationalVersion>$(DnSpyAssemblyInformationalVersion)</InformationalVersion>
|
||||
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>bin\Debug\dnSpy.Contracts.Debugger.DotNet.CorDebug.XML</DocumentationFile>
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>bin\Release\dnSpy.Contracts.Debugger.DotNet.CorDebug.XML</DocumentationFile>
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="Code\DbgDotNetNativeCodeLocation.cs" />
|
||||
<Compile Include="CorDebugStartDebuggingOptions.cs" />
|
||||
<Compile Include="CorThreadUserStates.cs" />
|
||||
<Compile Include="DbgCorDebugInternalRuntime.cs" />
|
||||
<Compile Include="DotNetCoreStartDebuggingOptions.cs" />
|
||||
<Compile Include="DotNetFrameworkStartDebuggingOptions.cs" />
|
||||
<Compile Include="CorDebugRuntimeKind.cs" />
|
||||
<Compile Include="CorDebugRuntimeVersion.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<ProjectReference Include="..\dnSpy.Contracts.Debugger.DotNet\dnSpy.Contracts.Debugger.DotNet.csproj" />
|
||||
<ProjectReference Include="..\dnSpy.Contracts.Debugger\dnSpy.Contracts.Debugger.csproj" />
|
||||
<ProjectReference Include="..\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\dnSpy.Contracts.Debugger.DotNet\dnSpy.Contracts.Debugger.DotNet.csproj">
|
||||
<Project>{2376e072-101f-4900-8770-79c6dffbd0fb}</Project>
|
||||
<Name>dnSpy.Contracts.Debugger.DotNet</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\dnSpy.Contracts.Debugger\dnSpy.Contracts.Debugger.csproj">
|
||||
<Project>{c92217e8-a68e-4f8d-9b98-d7328e89daf1}</Project>
|
||||
<Name>dnSpy.Contracts.Debugger</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj">
|
||||
<Project>{bb748e78-376f-429a-8d83-9a8946ec179f}</Project>
|
||||
<Name>dnSpy.Contracts.Logic</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\dnSpy\Properties\AssemblyInfo.Shared.cs">
|
||||
<Link>Properties\AssemblyInfo.Shared.cs</Link>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: AssemblyTitle("Debugger")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Debugger (Mono / Unity)")]
|
||||
[assembly: AssemblyCopyright("Copyright (C) 2014-2018 de4dot@gmail.com")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
|
@ -1,76 +1,23 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{7B58F062-7ED0-4AF1-90BB-BEB509E3BD68}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>dnSpy.Contracts.Debugger.DotNet.Mono</RootNamespace>
|
||||
<AssemblyName>dnSpy.Contracts.Debugger.DotNet.Mono</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<Copyright>$(DnSpyAssemblyCopyright)</Copyright>
|
||||
<Version>$(DnSpyAssemblyVersion)</Version>
|
||||
<InformationalVersion>$(DnSpyAssemblyInformationalVersion)</InformationalVersion>
|
||||
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>bin\Debug\dnSpy.Contracts.Debugger.DotNet.Mono.XML</DocumentationFile>
|
||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>bin\Release\dnSpy.Contracts.Debugger.DotNet.Mono.XML</DocumentationFile>
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="DbgMonoDebugInternalRuntime.cs" />
|
||||
<Compile Include="MonoConnectStartDebuggingOptions.cs" />
|
||||
<Compile Include="MonoConnectStartDebuggingOptionsBase.cs" />
|
||||
<Compile Include="MonoDebugRuntimeKind.cs" />
|
||||
<Compile Include="MonoStartDebuggingOptions.cs" />
|
||||
<Compile Include="MonoStartDebuggingOptionsBase.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="ThreadStates.cs" />
|
||||
<Compile Include="UnityConnectStartDebuggingOptions.cs" />
|
||||
<Compile Include="UnityStartDebuggingOptions.cs" />
|
||||
<ProjectReference Include="..\dnSpy.Contracts.Debugger.DotNet\dnSpy.Contracts.Debugger.DotNet.csproj" />
|
||||
<ProjectReference Include="..\dnSpy.Contracts.Debugger\dnSpy.Contracts.Debugger.csproj" />
|
||||
<ProjectReference Include="..\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\dnSpy.Contracts.Debugger.DotNet\dnSpy.Contracts.Debugger.DotNet.csproj">
|
||||
<Project>{2376e072-101f-4900-8770-79c6dffbd0fb}</Project>
|
||||
<Name>dnSpy.Contracts.Debugger.DotNet</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\dnSpy.Contracts.Debugger\dnSpy.Contracts.Debugger.csproj">
|
||||
<Project>{c92217e8-a68e-4f8d-9b98-d7328e89daf1}</Project>
|
||||
<Name>dnSpy.Contracts.Debugger</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj">
|
||||
<Project>{bb748e78-376f-429a-8d83-9a8946ec179f}</Project>
|
||||
<Name>dnSpy.Contracts.Logic</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\dnSpy\Properties\AssemblyInfo.Shared.cs">
|
||||
<Link>Properties\AssemblyInfo.Shared.cs</Link>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: AssemblyTitle("Debugger")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Debugger (.NET)")]
|
||||
[assembly: AssemblyCopyright("Copyright (C) 2014-2018 de4dot@gmail.com")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
|
@ -1,141 +1,29 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{2376E072-101F-4900-8770-79C6DFFBD0FB}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>dnSpy.Contracts.Debugger.DotNet</RootNamespace>
|
||||
<AssemblyName>dnSpy.Contracts.Debugger.DotNet</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<Copyright>$(DnSpyAssemblyCopyright)</Copyright>
|
||||
<Version>$(DnSpyAssemblyVersion)</Version>
|
||||
<InformationalVersion>$(DnSpyAssemblyInformationalVersion)</InformationalVersion>
|
||||
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>bin\Debug\dnSpy.Contracts.Debugger.DotNet.XML</DocumentationFile>
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>bin\Release\dnSpy.Contracts.Debugger.DotNet.XML</DocumentationFile>
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="Breakpoints\Code\DbgDotNetBreakpointFactory.cs" />
|
||||
<Compile Include="Code\DbgCodeRange.cs" />
|
||||
<Compile Include="Code\DbgDotNetCodeLocation.cs" />
|
||||
<Compile Include="Code\DbgDotNetCodeLocationFactory.cs" />
|
||||
<Compile Include="Code\DbgDotNetDecompilerGuidProvider.cs" />
|
||||
<Compile Include="Code\DbgDotNetDecompilerService.cs" />
|
||||
<Compile Include="Code\DbgDotNetInstructionOffsetConstants.cs" />
|
||||
<Compile Include="Code\DbgILInstruction.cs" />
|
||||
<Compile Include="Code\DbgILOffsetMapping.cs" />
|
||||
<Compile Include="Code\IDbgDotNetCodeLocation.cs" />
|
||||
<Compile Include="DbgDotNetInternalAppDomain.cs" />
|
||||
<Compile Include="DbgDotNetInternalModule.cs" />
|
||||
<Compile Include="DbgDotNetInternalRuntime.cs" />
|
||||
<Compile Include="Disassembly\DbgDotNetNativeCode.cs" />
|
||||
<Compile Include="Disassembly\DbgDotNetNativeCodeBlock.cs" />
|
||||
<Compile Include="Evaluation\DbgDotNetAliasInfo.cs" />
|
||||
<Compile Include="Evaluation\DbgDotNetCustomTypeInfo.cs" />
|
||||
<Compile Include="Evaluation\DbgDotNetDispatcher.cs" />
|
||||
<Compile Include="Evaluation\DbgDotNetExceptionInfo.cs" />
|
||||
<Compile Include="Evaluation\DbgDotNetLanguageGuids.cs" />
|
||||
<Compile Include="Evaluation\DbgDotNetObjectId.cs" />
|
||||
<Compile Include="Evaluation\DbgDotNetReturnValueInfo.cs" />
|
||||
<Compile Include="Evaluation\DbgDotNetRuntimeExtensions.cs" />
|
||||
<Compile Include="Evaluation\DbgDotNetValue.cs" />
|
||||
<Compile Include="Evaluation\DbgDotNetValueResult.cs" />
|
||||
<Compile Include="Evaluation\DbgLanguageDebugInfo.cs" />
|
||||
<Compile Include="Evaluation\Engine\DbgDotNetEngineObjectIdFactory.cs" />
|
||||
<Compile Include="Evaluation\Engine\DbgDotNetLanguageService.cs" />
|
||||
<Compile Include="Evaluation\ExpressionCompiler\DbgDotNetAlias.cs" />
|
||||
<Compile Include="Evaluation\ExpressionCompiler\DbgDotNetCompilationResult.cs" />
|
||||
<Compile Include="Evaluation\ExpressionCompiler\DbgDotNetExpressionCompiler.cs" />
|
||||
<Compile Include="Evaluation\ExpressionCompiler\DbgModuleReference.cs" />
|
||||
<Compile Include="Evaluation\ExpressionCompiler\PredefinedDecompilerGuids.cs" />
|
||||
<Compile Include="Evaluation\Formatters\DbgDotNetFormatter.cs" />
|
||||
<Compile Include="Evaluation\Formatters\IDebuggerDisplayAttributeEvaluator.cs" />
|
||||
<Compile Include="Evaluation\IDbgDotNetRuntime.cs" />
|
||||
<Compile Include="Evaluation\ValueNodes\DbgDotNetValueNode.cs" />
|
||||
<Compile Include="Evaluation\ValueNodes\DbgDotNetValueNodeFactory.cs" />
|
||||
<Compile Include="Extensions\DbgAppDomainExtensions.cs" />
|
||||
<Compile Include="Extensions\DbgModuleExtensions.cs" />
|
||||
<Compile Include="Extensions\DbgRuntimeExtensions.cs" />
|
||||
<Compile Include="Extensions\DbgValueExtensions.cs" />
|
||||
<Compile Include="Extensions\DmdAppDomainExtensions.cs" />
|
||||
<Compile Include="Extensions\DmdModuleExtensions.cs" />
|
||||
<Compile Include="Extensions\DmdRuntimeExtensions.cs" />
|
||||
<Compile Include="Metadata\DbgAssemblyInfoProvider.cs" />
|
||||
<Compile Include="Metadata\DbgAssemblyInfoProviderFactory.cs" />
|
||||
<Compile Include="Metadata\DbgDynamicModuleProvider.cs" />
|
||||
<Compile Include="Metadata\DbgDynamicModuleProviderFactory.cs" />
|
||||
<Compile Include="Metadata\DbgMetadataService.cs" />
|
||||
<Compile Include="Metadata\DbgModuleIdProvider.cs" />
|
||||
<Compile Include="Metadata\Internal\DbgRawMetadata.cs" />
|
||||
<Compile Include="Metadata\Internal\DbgRawMetadataService.cs" />
|
||||
<Compile Include="Modules\DbgModuleDotNetExtensions.cs" />
|
||||
<Compile Include="PredefinedDotNetDbgRuntimeTags.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Runtimes\DbgRuntimeDotNetExtensions.cs" />
|
||||
<Compile Include="Steppers\Engine\DbgDotNetEngineStepper.cs" />
|
||||
<Compile Include="Steppers\Engine\DbgDotNetEngineStepperFrameInfo.cs" />
|
||||
<Compile Include="Steppers\Engine\DbgEngineStepperFactory.cs" />
|
||||
<Compile Include="Steppers\Engine\Exceptions.cs" />
|
||||
<Compile Include="Text\DbgDotNetText.cs" />
|
||||
<Compile Include="Text\DbgDotNetTextOutput.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\dnSpy\Properties\AssemblyInfo.Shared.cs">
|
||||
<Link>Properties\AssemblyInfo.Shared.cs</Link>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.ComponentModel.Composition" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\Extensions\dnSpy.Debugger\dnSpy.Debugger.DotNet.Metadata\dnSpy.Debugger.DotNet.Metadata.csproj">
|
||||
<Project>{fcd8913d-85a0-479e-9689-70fea52c6dcb}</Project>
|
||||
<Name>dnSpy.Debugger.DotNet.Metadata</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\Libraries\dnlib\src\dnlib.csproj">
|
||||
<Project>{FDFC1237-143F-4919-8318-4926901F4639}</Project>
|
||||
<Name>dnlib</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\dnSpy.Contracts.Debugger\dnSpy.Contracts.Debugger.csproj">
|
||||
<Project>{C92217E8-A68E-4F8D-9B98-D7328E89DAF1}</Project>
|
||||
<Name>dnSpy.Contracts.Debugger</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj">
|
||||
<Project>{CB6F6372-9479-41E2-83A8-07854326BCA8}</Project>
|
||||
<Name>dnSpy.Contracts.DnSpy</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj">
|
||||
<Project>{bb748e78-376f-429a-8d83-9a8946ec179f}</Project>
|
||||
<Name>dnSpy.Contracts.Logic</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\Extensions\dnSpy.Debugger\dnSpy.Debugger.DotNet.Metadata\dnSpy.Debugger.DotNet.Metadata.csproj" />
|
||||
<ProjectReference Include="..\..\Libraries\dnlib\src\dnlib.csproj" />
|
||||
<ProjectReference Include="..\dnSpy.Contracts.Debugger\dnSpy.Contracts.Debugger.csproj" />
|
||||
<ProjectReference Include="..\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj" />
|
||||
<ProjectReference Include="..\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: AssemblyTitle("Debugger")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Debugger")]
|
||||
[assembly: AssemblyCopyright("Copyright (C) 2014-2018 de4dot@gmail.com")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
|
@ -1,206 +1,30 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="..\..\DnSpyCommon.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{C92217E8-A68E-4F8D-9B98-D7328E89DAF1}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>dnSpy.Contracts.Debugger</RootNamespace>
|
||||
<AssemblyName>dnSpy.Contracts.Debugger</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<Copyright>$(DnSpyAssemblyCopyright)</Copyright>
|
||||
<Version>$(DnSpyAssemblyVersion)</Version>
|
||||
<InformationalVersion>$(DnSpyAssemblyInformationalVersion)</InformationalVersion>
|
||||
|
||||
<SignAssembly>True</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\..\dnSpy.snk</AssemblyOriginatorKeyFile>
|
||||
<Features>strict</Features>
|
||||
<LangVersion>latest</LangVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>bin\Debug\dnSpy.Contracts.Debugger.XML</DocumentationFile>
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>portable</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>bin\Release\dnSpy.Contracts.Debugger.XML</DocumentationFile>
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<NoWarn>1685</NoWarn>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="AttachToProgramOptions.cs" />
|
||||
<Compile Include="Attach\AttachableProcess.cs" />
|
||||
<Compile Include="Attach\AttachableProcessesService.cs" />
|
||||
<Compile Include="Attach\AttachProgramOptions.cs" />
|
||||
<Compile Include="Attach\AttachProgramOptionsProvider.cs" />
|
||||
<Compile Include="Attach\AttachProgramOptionsProviderFactory.cs" />
|
||||
<Compile Include="Attach\Dialogs\ShowAttachToProcessDialog.cs" />
|
||||
<Compile Include="Attach\Dialogs\ShowAttachToProcessDialogOptions.cs" />
|
||||
<Compile Include="Attach\PredefinedArchitectureNames.cs" />
|
||||
<Compile Include="Attach\PredefinedAttachProgramOptionsProviderNames.cs" />
|
||||
<Compile Include="Breakpoints\Code\DbgBoundCodeBreakpoint.cs" />
|
||||
<Compile Include="Breakpoints\Code\DbgBreakpointLocationFormatter.cs" />
|
||||
<Compile Include="Breakpoints\Code\DbgBreakpointLocationFormatterProvider.cs" />
|
||||
<Compile Include="Breakpoints\Code\DbgCodeBreakpoint.cs" />
|
||||
<Compile Include="Breakpoints\Code\DbgCodeBreakpointDisplaySettings.cs" />
|
||||
<Compile Include="Breakpoints\Code\DbgCodeBreakpointHitCountService.cs" />
|
||||
<Compile Include="Breakpoints\Code\DbgCodeBreakpointOptions.cs" />
|
||||
<Compile Include="Breakpoints\Code\DbgCodeBreakpointSettings.cs" />
|
||||
<Compile Include="Breakpoints\Code\DbgCodeBreakpointsService.cs" />
|
||||
<Compile Include="Breakpoints\Code\Dialogs\ShowCodeBreakpointSettingsService.cs" />
|
||||
<Compile Include="Breakpoints\Code\FilterExpressionEvaluator\DbgFilterEEVariableProvider.cs" />
|
||||
<Compile Include="Breakpoints\Code\FilterExpressionEvaluator\DbgFilterExpressionEvaluator.cs" />
|
||||
<Compile Include="Breakpoints\Code\TextEditor\DbgBreakpointGlyphFormatter.cs" />
|
||||
<Compile Include="Breakpoints\Code\TextEditor\DbgBreakpointGlyphTextMarkerLocationProvider.cs" />
|
||||
<Compile Include="Breakpoints\Modules\DbgModuleBreakpoint.cs" />
|
||||
<Compile Include="Breakpoints\Modules\DbgModuleBreakpointInfo.cs" />
|
||||
<Compile Include="Breakpoints\Modules\DbgModuleBreakpointSettings.cs" />
|
||||
<Compile Include="Breakpoints\Modules\DbgModuleBreakpointsService.cs" />
|
||||
<Compile Include="CallStack\DbgCallStackService.cs" />
|
||||
<Compile Include="CallStack\DbgStackFrame.cs" />
|
||||
<Compile Include="CallStack\DbgStackWalker.cs" />
|
||||
<Compile Include="CallStack\TextEditor\DbgStackFrameGlyphTextMarkerLocationInfoProvider.cs" />
|
||||
<Compile Include="CallStack\TextEditor\DbgStackFrameTextViewMarker.cs" />
|
||||
<Compile Include="Code\DbgCodeLocation.cs" />
|
||||
<Compile Include="Code\DbgCodeLocationSerializer.cs" />
|
||||
<Compile Include="Code\PredefinedDbgCodeLocationTypes.cs" />
|
||||
<Compile Include="Code\TextEditor\DbgTextViewCodeLocationProvider.cs" />
|
||||
<Compile Include="DbgAppDomain.cs" />
|
||||
<Compile Include="DbgCollectionChangedEventArgs.cs" />
|
||||
<Compile Include="DbgDispatcher.cs" />
|
||||
<Compile Include="DbgEnvironment.cs" />
|
||||
<Compile Include="DbgImageLayout.cs" />
|
||||
<Compile Include="DbgInternalAppDomain.cs" />
|
||||
<Compile Include="DbgInternalModule.cs" />
|
||||
<Compile Include="DbgInternalRuntime.cs" />
|
||||
<Compile Include="DbgManager.cs" />
|
||||
<Compile Include="DbgMessageEventArgs.cs" />
|
||||
<Compile Include="DbgModule.cs" />
|
||||
<Compile Include="DbgModuleMemoryRefreshedNotifier.cs" />
|
||||
<Compile Include="DbgObject.cs" />
|
||||
<Compile Include="DbgProcess.cs" />
|
||||
<Compile Include="DbgRuntime.cs" />
|
||||
<Compile Include="DbgStateInfo.cs" />
|
||||
<Compile Include="DbgThread.cs" />
|
||||
<Compile Include="DebuggerSettings.cs" />
|
||||
<Compile Include="DebugProgramOptions.cs" />
|
||||
<Compile Include="Disassembly\DbgNativeCodeProvider.cs" />
|
||||
<Compile Include="Disassembly\DbgRuntimeNativeCodeProvider.cs" />
|
||||
<Compile Include="Engine\CallStack\DbgEngineStackFrame.cs" />
|
||||
<Compile Include="Engine\CallStack\DbgEngineStackWalker.cs" />
|
||||
<Compile Include="Engine\DbgEngine.cs" />
|
||||
<Compile Include="Engine\DbgEngineAppDomain.cs" />
|
||||
<Compile Include="Engine\DbgEngineBoundCodeBreakpoint.cs" />
|
||||
<Compile Include="Engine\DbgEngineMessage.cs" />
|
||||
<Compile Include="Engine\DbgEngineMessageFlags.cs" />
|
||||
<Compile Include="Engine\DbgEngineMessageKind.cs" />
|
||||
<Compile Include="Engine\DbgEngineModule.cs" />
|
||||
<Compile Include="Engine\DbgEngineProvider.cs" />
|
||||
<Compile Include="Engine\DbgEngineRuntimeInfo.cs" />
|
||||
<Compile Include="Engine\DbgEngineThread.cs" />
|
||||
<Compile Include="Engine\DbgObjectFactory.cs" />
|
||||
<Compile Include="Engine\Evaluation\DbgEngineExpressionEvaluator.cs" />
|
||||
<Compile Include="Engine\Evaluation\DbgEngineFormatter.cs" />
|
||||
<Compile Include="Engine\Evaluation\DbgEngineLanguage.cs" />
|
||||
<Compile Include="Engine\Evaluation\DbgEngineLanguageProvider.cs" />
|
||||
<Compile Include="Engine\Evaluation\DbgEngineObjectId.cs" />
|
||||
<Compile Include="Engine\Evaluation\DbgEngineObjectIdFactory.cs" />
|
||||
<Compile Include="Engine\Evaluation\DbgEngineValue.cs" />
|
||||
<Compile Include="Engine\Evaluation\DbgEngineValueNode.cs" />
|
||||
<Compile Include="Engine\Evaluation\DbgEngineValueNodeFactory.cs" />
|
||||
<Compile Include="Engine\Evaluation\DbgEngineValueNodeProvider.cs" />
|
||||
<Compile Include="Engine\Evaluation\PredefinedEvaluationErrorMessages.cs" />
|
||||
<Compile Include="Engine\Steppers\DbgEngineStepKind.cs" />
|
||||
<Compile Include="Engine\Steppers\DbgEngineStepper.cs" />
|
||||
<Compile Include="Evaluation\DbgEvaluationContext.cs" />
|
||||
<Compile Include="Evaluation\DbgEvaluationInfo.cs" />
|
||||
<Compile Include="Evaluation\DbgExpressionEvaluationInfo.cs" />
|
||||
<Compile Include="Evaluation\DbgExpressionEvaluator.cs" />
|
||||
<Compile Include="Evaluation\DbgFormatter.cs" />
|
||||
<Compile Include="Evaluation\DbgLanguage.cs" />
|
||||
<Compile Include="Evaluation\DbgLanguageService.cs" />
|
||||
<Compile Include="Evaluation\DbgObjectId.cs" />
|
||||
<Compile Include="Evaluation\DbgObjectIdService.cs" />
|
||||
<Compile Include="Evaluation\DbgStackFrameFormatterOptions.cs" />
|
||||
<Compile Include="Evaluation\DbgValue.cs" />
|
||||
<Compile Include="Evaluation\DbgValueFormatterOptions.cs" />
|
||||
<Compile Include="Evaluation\DbgValueFormatterTypeOptions.cs" />
|
||||
<Compile Include="Evaluation\DbgValueNode.cs" />
|
||||
<Compile Include="Evaluation\DbgValueNodeEvaluationOptions.cs" />
|
||||
<Compile Include="Evaluation\DbgValueNodeFactory.cs" />
|
||||
<Compile Include="Evaluation\DbgValueNodeProvider.cs" />
|
||||
<Compile Include="Evaluation\PredefinedDbgLanguageNames.cs" />
|
||||
<Compile Include="Evaluation\PredefinedDbgValueNodeImageNames.cs" />
|
||||
<Compile Include="Evaluation\PredefinedFormatSpecifiers.cs" />
|
||||
<Compile Include="Exceptions\DbgException.cs" />
|
||||
<Compile Include="Exceptions\DbgExceptionCategoryDefinition.cs" />
|
||||
<Compile Include="Exceptions\DbgExceptionCategoryDefinitionFlags.cs" />
|
||||
<Compile Include="Exceptions\DbgExceptionConditionSettings.cs" />
|
||||
<Compile Include="Exceptions\DbgExceptionDefinition.cs" />
|
||||
<Compile Include="Exceptions\DbgExceptionDefinitionFlags.cs" />
|
||||
<Compile Include="Exceptions\DbgExceptionDefinitionProvider.cs" />
|
||||
<Compile Include="Exceptions\DbgExceptionEventFlags.cs" />
|
||||
<Compile Include="Exceptions\DbgExceptionFormatter.cs" />
|
||||
<Compile Include="Exceptions\DbgExceptionId.cs" />
|
||||
<Compile Include="Exceptions\DbgExceptionSettings.cs" />
|
||||
<Compile Include="Exceptions\DbgExceptionSettingsService.cs" />
|
||||
<Compile Include="Exceptions\PredefinedExceptionCategories.cs" />
|
||||
<Compile Include="IDbgManagerStartListener.cs" />
|
||||
<Compile Include="PredefinedDbgRuntimeGuids.cs" />
|
||||
<Compile Include="PredefinedDbgRuntimeKindGuids.cs" />
|
||||
<Compile Include="PredefinedDebugTags.cs" />
|
||||
<Compile Include="PredefinedThreadKinds.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="References\DbgLoadModuleReference.cs" />
|
||||
<Compile Include="References\DbgLoadModuleReferenceHandler.cs" />
|
||||
<Compile Include="RuntimeId.cs" />
|
||||
<Compile Include="StartDebuggingOptions.cs" />
|
||||
<Compile Include="StartDebugging\DbgProcessStarter.cs" />
|
||||
<Compile Include="StartDebugging\Dialog\PredefinedStartDebuggingOptionsPageDisplayOrders.cs" />
|
||||
<Compile Include="StartDebugging\Dialog\StartDebuggingOptionsPage.cs" />
|
||||
<Compile Include="StartDebugging\Dialog\StartDebuggingOptionsPageContext.cs" />
|
||||
<Compile Include="StartDebugging\Dialog\StartDebuggingOptionsPageProvider.cs" />
|
||||
<Compile Include="StartDebugging\GenericDebugEngineGuidProvider.cs" />
|
||||
<Compile Include="StartDebugging\PredefinedGenericDebugEngineGuids.cs" />
|
||||
<Compile Include="Steppers\DbgStepKind.cs" />
|
||||
<Compile Include="Steppers\DbgStepper.cs" />
|
||||
<Compile Include="ThreadCategoryProvider.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\dnSpy\Properties\AssemblyInfo.Shared.cs">
|
||||
<Link>Properties\AssemblyInfo.Shared.cs</Link>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="project.json" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.ComponentModel.Composition" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj">
|
||||
<Project>{cb6f6372-9479-41e2-83a8-07854326bca8}</Project>
|
||||
<Name>dnSpy.Contracts.DnSpy</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj">
|
||||
<Project>{BB748E78-376F-429A-8D83-9A8946EC179F}</Project>
|
||||
<Name>dnSpy.Contracts.Logic</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\dnSpy.Contracts.DnSpy\dnSpy.Contracts.DnSpy.csproj" />
|
||||
<ProjectReference Include="..\dnSpy.Contracts.Logic\dnSpy.Contracts.Logic.csproj" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.VisualStudio.Text.UI.Wpf" Version="$(MSVSTextVersion)" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"Microsoft.VisualStudio.Text.UI.Wpf": "15.5.27130"
|
||||
},
|
||||
"frameworks": {
|
||||
"net471": { }
|
||||
},
|
||||
"runtimes": {
|
||||
"win": { }
|
||||
}
|
||||
}
|
|
@ -25,8 +25,8 @@ using dnlib.DotNet;
|
|||
using dnlib.DotNet.Resources;
|
||||
using dnlib.IO;
|
||||
using dnSpy.Contracts.Decompiler;
|
||||
using dnSpy.Contracts.DnSpy.Properties;
|
||||
using dnSpy.Contracts.Images;
|
||||
using dnSpy.Contracts.Properties;
|
||||
using dnSpy.Contracts.Text;
|
||||
using dnSpy.Contracts.TreeView;
|
||||
using dnSpy.Contracts.Utilities;
|
||||
|
|
|
@ -23,8 +23,8 @@ using System.Threading;
|
|||
using dnlib.DotNet;
|
||||
using dnlib.IO;
|
||||
using dnSpy.Contracts.Decompiler;
|
||||
using dnSpy.Contracts.DnSpy.Properties;
|
||||
using dnSpy.Contracts.Images;
|
||||
using dnSpy.Contracts.Properties;
|
||||
using dnSpy.Contracts.Text;
|
||||
using dnSpy.Contracts.TreeView;
|
||||
using dnSpy.Contracts.Utilities;
|
||||
|
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче