Skip to content

Commit dacd0ca

Browse files
author
Сергей Трегуб
committed
Add a template pack project
1 parent cc54372 commit dacd0ca

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<PackageType>Template</PackageType>
5+
<PackageVersion>2.6</PackageVersion>
6+
<PackageId>DrWatson1.ProjectTemplate.RestAPI</PackageId>
7+
<Title>ASP.Net Core RESTful Service Template</Title>
8+
<Authors>Sergey Tregub</Authors>
9+
<Description>Project template to create production-ready RESTful service based on ASP.Net Core v3.1 or 5.0. It contains preconfigured DI-container, logging, CORS, some boilerplate code and other features</Description>
10+
<PackageTags>dotnet-new;templates;webapi;web;rest-api</PackageTags>
11+
<TargetFramework>netcoreapp3.1</TargetFramework>
12+
13+
<IncludeContentInPack>true</IncludeContentInPack>
14+
<IncludeBuildOutput>false</IncludeBuildOutput>
15+
<ContentTargetFolders>content</ContentTargetFolders>
16+
<NoWarn>$(NoWarn);NU5128</NoWarn>
17+
<PackageReleaseNotes>Support of .Net Core 5.0 and dotnet new custom template</PackageReleaseNotes>
18+
</PropertyGroup>
19+
20+
<ItemGroup>
21+
<Content Include="ReferenceProject\**\*" Exclude="ReferenceProject\**\bin\**;ReferenceProject\**\obj\**" />
22+
<Compile Remove="**\*" />
23+
</ItemGroup>
24+
25+
</Project>

0 commit comments

Comments
 (0)