A game framework written with osu! in mind.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 21 lines 951 B view raw
1<Project Sdk="Microsoft.NET.Sdk"> 2 <PropertyGroup> 3 <PackageType>Template</PackageType> 4 <PackageId>ppy.osu.Framework.Templates</PackageId> 5 <Title>osu! framework templates</Title> 6 <Description>Templates that can be used as starting points for new games, built with of osu! framework.</Description> 7 <PackageTags>dotnet-new;templates;osu;framework</PackageTags> 8 <TargetFramework>netstandard2.1</TargetFramework> 9 <IncludeContentInPack>true</IncludeContentInPack> 10 <IncludeBuildOutput>false</IncludeBuildOutput> 11 <ContentTargetFolders>content</ContentTargetFolders> 12 <NoDefaultExcludes>true</NoDefaultExcludes> 13 <!-- No lib content for target framework. The warning is meaningless for template packages. --> 14 <NoWarn>NU5128</NoWarn> 15 </PropertyGroup> 16 17 <ItemGroup> 18 <Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" /> 19 <Compile Remove="**\*" /> 20 </ItemGroup> 21</Project>