Files
osu-framework/SampleGame/SampleGame.csproj
smoogipoo 2a468c8eb6 Compile executable projects for both net461 and netcore
Also reordered net461 and netcoreapp2.0 targets to make VS prefer net461.
2017-11-20 13:04:00 +09:00

16 lines
539 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\LangVer.props" />
<Import Project="..\OpenTK.props" />
<Import Project="..\System.Drawing.props" />
<Import Project="..\osu.framework.props" />
<PropertyGroup Label="Project">
<TargetFrameworks>net461;netcoreapp2.0</TargetFrameworks>
<OutputType>Exe</OutputType>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<ItemGroup Label="Project References">
<ProjectReference Include="..\osu.Framework\osu.Framework.csproj" />
</ItemGroup>
</Project>