-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMikeware.GoDotNet.BlankTemplate.csproj
30 lines (26 loc) · 1.26 KB
/
Mikeware.GoDotNet.BlankTemplate.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
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>Mikeware.GoDotNet.BlankTemplate</PackageId>
<PackageVersion>1.0.1</PackageVersion>
<Title>Godot C# Templates Empty</Title>
<Authors>Mikeware</Authors>
<Description>A simple template setup to create a C# based project for Godot 4.x.</Description>
<PackageTags>dotnet-new;templates;godot;game;csharp</PackageTags>
<PackageLicenseFile>LICENSE.TXT</PackageLicenseFile>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/Mikeware/GoDotNet.BlankTemplate</PackageProjectUrl>
<PackageType>Template</PackageType>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoWarn>$(NoWarn);NU5128</NoWarn>
<NoDefaultExcludes>true</NoDefaultExcludes>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE.TXT" Pack="true" PackagePath="\"/>
<None Include="readme.md" Pack="true" PackagePath="\"/>
<Content Include="content\**\*" Exclude="content\**\bin\**;content\**\obj\**;content\**\.godot\**;content\**\.vs\**" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>