-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
templatepack.csproj
27 lines (23 loc) · 1.27 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>1.1</PackageVersion>
<PackageId>JasonTaylorDev.RapidConsole</PackageId>
<Title>Rapid Console App</Title>
<Authors>JasonTaylorDev</Authors>
<Description>A project for creating a command-line application that can run on .NET on Windows, Linux and macOS with support for commands, dependency injection, logging, and a whole lot more.</Description>
<PackageTags>dotnet-new;templates;console</PackageTags>
<TargetFramework>net8.0</TargetFramework>
<RepositoryUrl>https://github.com/jasontaylordev/RapidConsole</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>RapidConsole</ContentTargetFolders>
</PropertyGroup>
<ItemGroup>
<Content Include="RapidConsole\**\*" Exclude="RapidConsole\**\bin\**;RapidConsole\**\obj\**" />
<None Include="README.md" Pack="true" PackagePath="\"/>
<Compile Remove="**\*" />
</ItemGroup>
</Project>