-
Notifications
You must be signed in to change notification settings - Fork 0
/
Guilded.Templates.csproj
29 lines (26 loc) · 1.19 KB
/
Guilded.Templates.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>
<!-- Package -->
<PackageId>Guilded.Templates</PackageId>
<PackageType>Template</PackageType>
<PackageVersion>1.7.0</PackageVersion>
<PackageTags>guilded-dotnet;dotnet-new;template;templates;guilded</PackageTags>
<PackageProjectUrl>https://guilded-net.github.io/index</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<!-- Template pack info -->
<Title>Guilded.NET Templates</Title>
<Authors>IdkGoodName</Authors>
<Description>.NET 6+ templates for Guilded.NET</Description>
<TargetFramework>net6.0</TargetFramework>
<RepositoryUrl>https://github.com/Guilded-NET/Guilded.NET</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Content -->
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
</PropertyGroup>
<ItemGroup>
<Content Include="templates\**\*" Exclude="removed;removed\**\*;templates\**\bin\**;templates\**\obj\**;templates\**\.ionide\**" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>