mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.9 KiB
63 lines
1.9 KiB
<?xml version="1.0" encoding="utf-8"?> |
|
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>net461</TargetFramework> |
|
<AssemblyName>Test.Plugin</AssemblyName> |
|
|
|
<GenerateAssemblyInfo>False</GenerateAssemblyInfo> |
|
|
|
<EnableDefaultItems>False</EnableDefaultItems> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Debug'"> |
|
<DebugType>full</DebugType> |
|
<DebugSymbols>true</DebugSymbols> |
|
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'"> |
|
<DebugType>pdbonly</DebugType> |
|
<DebugSymbols>true</DebugSymbols> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup> |
|
<!-- Workaround for lack of XAML support in the new project system --> |
|
<LanguageTargets>$(MSBuildExtensionsPath)\$(VisualStudioVersion)\Bin\Microsoft.CSharp.targets</LanguageTargets> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<Reference Include="PresentationCore" /> |
|
<Reference Include="PresentationFramework" /> |
|
<Reference Include="System.ComponentModel.Composition" /> |
|
<Reference Include="System.Xaml" /> |
|
<Reference Include="WindowsBase" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\ICSharpCode.Decompiler\ICSharpCode.Decompiler.csproj" /> |
|
<ProjectReference Include="..\ILSpy\ILSpy.csproj" /> |
|
<ProjectReference Include="..\SharpTreeView\ICSharpCode.TreeView.csproj" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<Compile Include="ContextMenuCommand.cs" /> |
|
<Compile Include="CustomLanguage.cs" /> |
|
<Compile Include="CustomOptionPage.xaml.cs"> |
|
<DependentUpon>CustomOptionPage.xaml</DependentUpon> |
|
<SubType>Code</SubType> |
|
</Compile> |
|
<Compile Include="MainMenuCommand.cs" /> |
|
<Compile Include="Properties\AssemblyInfo.cs" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<Resource Include="Clear.png" /> |
|
<None Include="Readme.txt" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<Page Include="CustomOptionPage.xaml" /> |
|
</ItemGroup> |
|
|
|
</Project> |