2017-11-29 23:45:37 +08:00
|
|
|
<!-- Contains required properties for osu!framework projects. -->
|
2017-12-01 17:51:20 +08:00
|
|
|
<Project>
|
2017-12-01 12:53:32 +08:00
|
|
|
<PropertyGroup Label="C#">
|
2018-10-11 16:44:25 +08:00
|
|
|
<LangVersion>7.2</LangVersion>
|
2017-12-01 12:53:32 +08:00
|
|
|
</PropertyGroup>
|
2018-04-11 21:31:50 +08:00
|
|
|
<PropertyGroup>
|
|
|
|
<ApplicationManifest>..\app.manifest</ApplicationManifest>
|
|
|
|
</PropertyGroup>
|
2017-11-29 23:45:37 +08:00
|
|
|
<ItemGroup Label="License">
|
|
|
|
<None Include="..\osu.licenseheader">
|
|
|
|
<Link>osu.licenseheader</Link>
|
|
|
|
</None>
|
|
|
|
</ItemGroup>
|
2018-03-28 13:13:37 +08:00
|
|
|
<ItemGroup Label="Resources">
|
|
|
|
<EmbeddedResource Include="Resources\**\*.*" />
|
|
|
|
</ItemGroup>
|
2018-03-28 14:19:56 +08:00
|
|
|
<PropertyGroup Label="Project">
|
|
|
|
<Company>ppy Pty Ltd</Company>
|
2019-01-24 17:24:30 +08:00
|
|
|
<Copyright>Copyright (c) 2019 ppy Pty Ltd</Copyright>
|
2018-03-28 14:19:56 +08:00
|
|
|
<!-- DeepEqual is not netstandard-compatible. This is fine since we run tests with .NET Framework anyway.
|
|
|
|
This is required due to https://github.com/NuGet/Home/issues/5740 -->
|
|
|
|
<NoWarn>NU1701</NoWarn>
|
|
|
|
</PropertyGroup>
|
2017-11-29 23:45:37 +08:00
|
|
|
</Project>
|