forked from Ensono/stacks-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.csproj
25 lines (20 loc) · 1.03 KB
/
template.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>1.0</PackageVersion>
<PackageId>Amido.Stacks.Templates</PackageId>
<Title>Amido Stacks Web API Templates</Title>
<Authors>Amido</Authors>
<Description>Templates containing the full suite of applications and infrastructure to run a simple web api.</Description>
<PackageTags>dotnet-new;templates;amido;web-api</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoWarn>$(NoWarn);NU5128</NoWarn>
</PropertyGroup>
<ItemGroup>
<Content Include=".\templates\**" Exclude=".\templates\**\.git\**;.\templates\**\.github\**;.\templates\**\.vscode\**;.\templates\**\obj\**;.\templates\**\bin\**;.\templates\**\.terraform\**;.\templates\**\.store\**;.\templates\**\template.csproj" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>