GUI: Create project boilerplate

This commit is contained in:
Katy Coe
2020-02-06 03:08:31 +01:00
parent fe58884c34
commit b0a7f303cf
7 changed files with 99 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<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>