2022-05-04 06:06:01 +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#">
|
2024-02-01 15:51:43 +00:00
|
|
|
<LangVersion>12.0</LangVersion>
|
2022-06-17 07:34:09 +00:00
|
|
|
<Nullable>enable</Nullable>
|
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">
|
2023-02-11 10:36:40 +00:00
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="3.3.4" PrivateAssets="All" />
|
2019-11-13 14:29:44 +00:00
|
|
|
<AdditionalFiles Include="$(MSBuildThisFileDirectory)CodeAnalysis\BannedSymbols.txt" />
|
|
|
|
</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>
|
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>
|
2024-01-25 10:56:40 +00:00
|
|
|
<Copyright>Copyright (c) 2024 ppy Pty Ltd</Copyright>
|
2019-10-30 14:56:33 +00:00
|
|
|
<PackageTags>osu game</PackageTags>
|
|
|
|
</PropertyGroup>
|
2021-01-02 13:25:15 +00:00
|
|
|
</Project>
|