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.
30 lines
1007 B
30 lines
1007 B
<?xml version="1.0" encoding="utf-8"?> |
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop"> |
|
|
|
<PropertyGroup> |
|
<UseWpf>true</UseWpf> |
|
<GenerateAssemblyInfo>False</GenerateAssemblyInfo> |
|
<SignAssembly>True</SignAssembly> |
|
<AssemblyOriginatorKeyFile>..\ICSharpCode.Decompiler\ICSharpCode.Decompiler.snk</AssemblyOriginatorKeyFile> |
|
</PropertyGroup> |
|
|
|
<Import Project="..\multitargeting.props" Condition="Exists('..\multitargeting.props')" /> |
|
<PropertyGroup Condition="!Exists('..\multitargeting.props')"> |
|
<TargetFramework>net472</TargetFramework> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Debug'"> |
|
<DebugType>full</DebugType> |
|
<DebugSymbols>true</DebugSymbols> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'"> |
|
<DebugType>pdbonly</DebugType> |
|
<DebugSymbols>true</DebugSymbols> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="TomsToolbox.Wpf.Styles" Version="2.5.5" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|