/TestPlugin/TestPlugin.csproj

http://github.com/icsharpcode/ILSpy · MSBuild · 61 lines · 50 code · 11 blank · 0 comment · 2 complexity · a6b4923fca73dc7cd57d46c94a829085 MD5 · raw file

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project Sdk="MSBuild.Sdk.Extras">
  3. <PropertyGroup>
  4. <TargetFramework>net472</TargetFramework>
  5. <AssemblyName>Test.Plugin</AssemblyName>
  6. <GenerateAssemblyInfo>False</GenerateAssemblyInfo>
  7. <EnableDefaultItems>False</EnableDefaultItems>
  8. <UseWpf>true</UseWpf>
  9. <ExtrasEnableDefaultPageItems>false</ExtrasEnableDefaultPageItems>
  10. <ExtrasEnableDefaultResourceItems>false</ExtrasEnableDefaultResourceItems>
  11. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)' == 'Debug'">
  13. <DebugType>full</DebugType>
  14. <DebugSymbols>true</DebugSymbols>
  15. <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
  16. </PropertyGroup>
  17. <PropertyGroup Condition="'$(Configuration)' == 'Release'">
  18. <DebugType>pdbonly</DebugType>
  19. <DebugSymbols>true</DebugSymbols>
  20. </PropertyGroup>
  21. <ItemGroup>
  22. <Reference Include="PresentationCore" />
  23. <Reference Include="PresentationFramework" />
  24. <Reference Include="System.ComponentModel.Composition" />
  25. <Reference Include="System.Xaml" />
  26. <Reference Include="WindowsBase" />
  27. </ItemGroup>
  28. <ItemGroup>
  29. <ProjectReference Include="..\ICSharpCode.Decompiler\ICSharpCode.Decompiler.csproj" />
  30. <ProjectReference Include="..\ILSpy\ILSpy.csproj" />
  31. <ProjectReference Include="..\SharpTreeView\ICSharpCode.TreeView.csproj" />
  32. </ItemGroup>
  33. <ItemGroup>
  34. <Compile Include="AboutPageAddition.cs" />
  35. <Compile Include="ContextMenuCommand.cs" />
  36. <Compile Include="CustomLanguage.cs" />
  37. <Compile Include="CustomOptionPage.xaml.cs">
  38. <DependentUpon>CustomOptionPage.xaml</DependentUpon>
  39. </Compile>
  40. <Compile Include="MainMenuCommand.cs" />
  41. <Compile Include="Properties\AssemblyInfo.cs" />
  42. </ItemGroup>
  43. <ItemGroup>
  44. <Resource Include="Clear.png" />
  45. <None Include="Readme.txt" />
  46. </ItemGroup>
  47. <ItemGroup>
  48. <Page Include="CustomOptionPage.xaml" />
  49. </ItemGroup>
  50. </Project>