Merge branch 'ImGui' of github.com:prime31/FNA-VSCode-Template into ImGui

This commit is contained in:
Mike 2019-02-13 15:09:48 -08:00
commit 32eb6988a2

View File

@ -1,8 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<TargetFramework>net462</TargetFramework> <TargetFramework>net471</TargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<PlatformTarget>AnyCPU</PlatformTarget> <PlatformTarget>AnyCPU</PlatformTarget>
<AssemblyName>project_name</AssemblyName> <AssemblyName>project_name</AssemblyName>
@ -10,7 +9,7 @@
<AllowUnsafeBlocks>True</AllowUnsafeBlocks> <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup> </PropertyGroup>
<!-- Reference FNA project --> <!-- Reference FNA, Nez and ImGui projects -->
<ItemGroup> <ItemGroup>
<ProjectReference Include="../FNA/FNA.csproj" /> <ProjectReference Include="../FNA/FNA.csproj" />
<ProjectReference Include="../Nez.FNA/Nez.FNA/Nez.FNA.csproj" /> <ProjectReference Include="../Nez.FNA/Nez.FNA/Nez.FNA.csproj" />
@ -88,5 +87,4 @@
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content> </Content>
</ItemGroup> </ItemGroup>
</Project> </Project>