-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRbfxTemplate.csproj
29 lines (25 loc) · 1.21 KB
/
RbfxTemplate.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>1.0</PackageVersion>
<PackageReadmeFile>./README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>./content/Content/Common/Data/Images/Splash.png</PackageIcon>
<PackageId>rbfx.template.empty</PackageId>
<NoDefaultExcludes>true</NoDefaultExcludes>
<Title>Rebel Framework Empty Project Template</Title>
<Authors>rbfx</Authors>
<Description>Templates to use when creating a game using Rebel Framework.</Description>
<PackageTags>dotnet-new;templates;rbfx</PackageTags>
<TargetFramework>net8.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
</PropertyGroup>
<ItemGroup>
<Content Include="**\*" Exclude="**\bin\**;**\obj\**;RbfxTemplate.csproj;.vs\**\*;.git;.vs" />
<Compile Remove="**\*" />
<None Include="README.md" Pack="true" PackagePath="/"/>
<None Include="RbfxTemplate/Properties/launchSettings.json" Pack="true" PackagePath="RbfxTemplate/Properties/"/>
</ItemGroup>
</Project>