39 lines
1.2 KiB
XML
39 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
<PublishTrimmed>true</PublishTrimmed>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<UseWPF>true</UseWPF>
|
|
<AssemblyName>Il2CppInspector</AssemblyName>
|
|
<Version>2.0</Version>
|
|
<Authors>Katy Coe</Authors>
|
|
<Company>Noisy Cow Studios</Company>
|
|
<Product>Il2CppInspector Windows Edition</Product>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<WarningsAsErrors>NU1605</WarningsAsErrors>
|
|
<NoWarn>1701;1702;NU1701</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\Il2CppInspector.CLI\Utils.cs" Link="Utils.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Ookii.Dialogs.Wpf.NETCore" Version="2.0.0" />
|
|
<PackageReference Include="XamlAnimatedGif" Version="1.2.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Il2CppInspector.Common\Il2CppInspector.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Resource Include="Resources\pizza.gif" />
|
|
</ItemGroup>
|
|
|
|
</Project> |