18 lines
534 B
XML
18 lines
534 B
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<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>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Il2CppInspector.Common\Il2CppInspector.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project> |