2017-11-29 15:45:37 +00:00
|
|
|
<!-- Contains required properties for osu!framework projects. -->
|
2017-12-01 09:51:20 +00:00
|
|
|
<Project>
|
2017-12-01 04:53:32 +00:00
|
|
|
<PropertyGroup Label="C#">
|
2019-11-11 13:20:18 +00:00
|
|
|
<LangVersion>8.0</LangVersion>
|
2019-11-27 11:37:11 +00:00
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
2017-12-01 04:53:32 +00:00
|
|
|
</PropertyGroup>
|
2018-04-11 13:31:50 +00:00
|
|
|
<PropertyGroup>
|
2019-10-30 13:54:14 +00:00
|
|
|
<ApplicationManifest>$(MSBuildThisFileDirectory)app.manifest</ApplicationManifest>
|
2018-04-11 13:31:50 +00:00
|
|
|
</PropertyGroup>
|
2017-11-29 15:45:37 +00:00
|
|
|
<ItemGroup Label="License">
|
2019-10-30 13:54:14 +00:00
|
|
|
<None Include="$(MSBuildThisFileDirectory)osu.licenseheader">
|
2017-11-29 15:45:37 +00:00
|
|
|
<Link>osu.licenseheader</Link>
|
|
|
|
</None>
|
|
|
|
</ItemGroup>
|
2018-03-28 05:13:37 +00:00
|
|
|
<ItemGroup Label="Resources">
|
|
|
|
<EmbeddedResource Include="Resources\**\*.*" />
|
|
|
|
</ItemGroup>
|
2019-11-13 14:29:44 +00:00
|
|
|
<ItemGroup Label="Code Analysis">
|
2019-12-02 07:18:54 +00:00
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="2.9.8" PrivateAssets="All" />
|
2019-11-13 14:29:44 +00:00
|
|
|
<AdditionalFiles Include="$(MSBuildThisFileDirectory)CodeAnalysis\BannedSymbols.txt" />
|
2019-11-28 13:39:33 +00:00
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8" PrivateAssets="All" />
|
2019-11-13 14:29:44 +00:00
|
|
|
</ItemGroup>
|
2019-11-28 13:39:33 +00:00
|
|
|
<PropertyGroup Label="Code Analysis">
|
|
|
|
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)CodeAnalysis\osu.ruleset</CodeAnalysisRuleSet>
|
|
|
|
</PropertyGroup>
|
2019-11-17 12:43:34 +00:00
|
|
|
<PropertyGroup Label="Documentation">
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
|
|
|
</PropertyGroup>
|
2018-03-28 06:19:56 +00: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 12:43:34 +00:00
|
|
|
<NoWarn>$(NoWarn);NU1701</NoWarn>
|
2018-03-28 06:19:56 +00:00
|
|
|
</PropertyGroup>
|
2019-10-30 14:56:33 +00:00
|
|
|
<PropertyGroup Label="Nuget">
|
2019-11-26 08:40:48 +00:00
|
|
|
<IsPackable>false</IsPackable>
|
2019-10-30 14:56:33 +00:00
|
|
|
<Authors>ppy Pty Ltd</Authors>
|
2019-10-30 15:37:58 +00:00
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
2019-10-30 14:56:33 +00: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 15:45:37 +00:00
|
|
|
</Project>
|