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#">
|
2019-10-30 21:54:14 +08:00
|
|
|
<LangVersion>7.3</LangVersion>
|
2017-12-01 12:53:32 +08:00
|
|
|
</PropertyGroup>
|
2018-04-11 21:31:50 +08:00
|
|
|
<PropertyGroup>
|
2019-10-30 21:54:14 +08:00
|
|
|
<ApplicationManifest>$(MSBuildThisFileDirectory)app.manifest</ApplicationManifest>
|
2018-04-11 21:31:50 +08:00
|
|
|
</PropertyGroup>
|
2017-11-29 23:45:37 +08:00
|
|
|
<ItemGroup Label="License">
|
2019-10-30 21:54:14 +08:00
|
|
|
<None Include="$(MSBuildThisFileDirectory)osu.licenseheader">
|
2017-11-29 23:45:37 +08:00
|
|
|
<Link>osu.licenseheader</Link>
|
|
|
|
</None>
|
|
|
|
</ItemGroup>
|
2018-03-28 13:13:37 +08:00
|
|
|
<ItemGroup Label="Resources">
|
|
|
|
<EmbeddedResource Include="Resources\**\*.*" />
|
|
|
|
</ItemGroup>
|
2019-11-13 22:29:44 +08:00
|
|
|
<ItemGroup Label="Code Analysis">
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="2.9.7" PrivateAssets="All" />
|
|
|
|
<AdditionalFiles Include="$(MSBuildThisFileDirectory)CodeAnalysis\BannedSymbols.txt" />
|
|
|
|
</ItemGroup>
|
2019-11-17 20:43:34 +08:00
|
|
|
<PropertyGroup Label="Documentation">
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
|
|
|
</PropertyGroup>
|
2018-03-28 14:19:56 +08:00
|
|
|
<PropertyGroup Label="Project">
|
|
|
|
<!-- 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 -->
|
2019-11-17 20:43:34 +08:00
|
|
|
<NoWarn>$(NoWarn);NU1701</NoWarn>
|
2018-03-28 14:19:56 +08:00
|
|
|
</PropertyGroup>
|
2019-10-30 22:56:33 +08:00
|
|
|
<PropertyGroup Label="Nuget">
|
|
|
|
<Authors>ppy Pty Ltd</Authors>
|
2019-10-30 23:37:58 +08:00
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
2019-10-30 22:56:33 +08:00
|
|
|
<PackageProjectUrl>https://github.com/ppy/osu</PackageProjectUrl>
|
|
|
|
<RepositoryUrl>https://github.com/ppy/osu</RepositoryUrl>
|
|
|
|
<PackageReleaseNotes>Automated release.</PackageReleaseNotes>
|
|
|
|
<Company>ppy Pty Ltd</Company>
|
|
|
|
<Copyright>Copyright (c) 2019 ppy Pty Ltd</Copyright>
|
|
|
|
<PackageTags>osu game</PackageTags>
|
|
|
|
</PropertyGroup>
|
2017-11-29 23:45:37 +08:00
|
|
|
</Project>
|