mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 12:17:46 +08:00
9793137bfa
Resolves #2380
24 lines
851 B
XML
24 lines
851 B
XML
<!-- Contains required properties for osu!framework projects. -->
|
|
<Project>
|
|
<PropertyGroup Label="C#">
|
|
<LangVersion>7</LangVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<ApplicationManifest>..\app.manifest</ApplicationManifest>
|
|
</PropertyGroup>
|
|
<ItemGroup Label="License">
|
|
<None Include="..\osu.licenseheader">
|
|
<Link>osu.licenseheader</Link>
|
|
</None>
|
|
</ItemGroup>
|
|
<ItemGroup Label="Resources">
|
|
<EmbeddedResource Include="Resources\**\*.*" />
|
|
</ItemGroup>
|
|
<PropertyGroup Label="Project">
|
|
<Company>ppy Pty Ltd</Company>
|
|
<Copyright>ppy Pty Ltd 2007-2018</Copyright>
|
|
<!-- 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>
|
|
</Project> |