mirror of
https://github.com/SK-la/osu-framework.git
synced 2026-03-13 11:20:31 +00:00
22 lines
944 B
XML
22 lines
944 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<PackageType>Template</PackageType>
|
|
<PackageId>ppy.osu.Framework.Templates</PackageId>
|
|
<Title>osu! framework templates</Title>
|
|
<Description>Templates that can be used as starting points for new games, built with of osu! framework.</Description>
|
|
<PackageTags>dotnet-new;templates;osu;framework</PackageTags>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<IncludeContentInPack>true</IncludeContentInPack>
|
|
<IncludeBuildOutput>false</IncludeBuildOutput>
|
|
<ContentTargetFolders>content</ContentTargetFolders>
|
|
<NoDefaultExcludes>true</NoDefaultExcludes>
|
|
<!-- No lib content for target framework. The warning is meaningless for template packages. -->
|
|
<NoWarn>NU5128</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" />
|
|
<Compile Remove="**\*" />
|
|
</ItemGroup>
|
|
</Project>
|