Files
osu-framework/SampleGame/SampleGame.csproj
Huo Yaoyuan 3f47086507 Use LangVer.props to control language version.
If set target framework using props file, Visual Studio will complain
to update the project.
Although it can load it without conversion.
2017-10-23 18:17:48 +08:00

24 lines
762 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\LangVer.props" />
<PropertyGroup>
<TargetFramework>net461</TargetFramework>
<OutputType>WinExe</OutputType>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Content Include="OpenTK.dll.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\osu.Framework\osu.Framework.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="OpenTK" Version="3.0.0-git00009" />
</ItemGroup>
<ItemGroup>
<None Include="..\osu-framework.licenseheader">
<Link>osu-framework.licenseheader</Link>
</None>
</ItemGroup>
</Project>