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.
35 lines
1.2 KiB
35 lines
1.2 KiB
<?xml version="1.0" encoding="utf-8"?> |
|
<Project Sdk="Microsoft.NET.Sdk"> |
|
<PropertyGroup> |
|
<AssemblyName>ILSpy.BamlDecompiler.Plugin</AssemblyName> |
|
<TargetFramework>net8.0-windows</TargetFramework> |
|
<RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers> |
|
<IsPackable>false</IsPackable> |
|
<GenerateAssemblyInfo>False</GenerateAssemblyInfo> |
|
<BaseAddress>6488064</BaseAddress> |
|
<UseWpf>true</UseWpf> |
|
<EnableWindowsTargeting>true</EnableWindowsTargeting> |
|
</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> |
|
<OutputPath>..\ILSpy\bin\$(Configuration)\</OutputPath> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\ICSharpCode.BamlDecompiler\ICSharpCode.BamlDecompiler.csproj" /> |
|
<ProjectReference Include="..\ILSpy\ILSpy.csproj" /> |
|
<ProjectReference Include="..\ICSharpCode.Decompiler\ICSharpCode.Decompiler.csproj" /> |
|
</ItemGroup> |
|
|
|
</Project> |