-
Notifications
You must be signed in to change notification settings - Fork 3
/
TemplatePack.csproj
29 lines (24 loc) · 1.14 KB
/
TemplatePack.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>0.2.1</PackageVersion>
<PackageId>Classic.Console.Templates</PackageId>
<Title>Classic Console Templates</Title>
<Authors>Public Extensions</Authors>
<Description>.NET 6+ console project templates that do not use top-level statements.</Description>
<PackageTags>dotnet-new;templates;console;classic;top;level</PackageTags>
<PackageOutputPath>nupkg</PackageOutputPath>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/jpobst/classic-dotnet-templates</PackageProjectUrl>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<TargetFramework>net6.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
</PropertyGroup>
<ItemGroup>
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" />
<Compile Remove="**\*" />
<None Include="readme.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>