-
Notifications
You must be signed in to change notification settings - Fork 7
/
AksApiTemplate.csproj
27 lines (22 loc) · 1.06 KB
/
AksApiTemplate.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.3.0</PackageVersion>
<PackageId>RobBell.AksApi.Template</PackageId>
<Title>ASP.NET Core WebAPI for AKS Template</Title>
<Authors>Rob Bell</Authors>
<Description>A 'dotnet new' template for creating a fully-featured, 12 Factor, ASP.NET Core Web API for AKS</Description>
<PackageTags>dotnet-new;templates;web-api;aspnet;aks</PackageTags>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<TargetFramework>netstandard2.1</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking>
</PropertyGroup>
<ItemGroup>
<Content Include="template\**\*" Exclude="template\**\bin\**;template\**\obj\**" />
<None Include="LICENSE.txt" Pack="true" PackagePath="$(PackageLicenseFile)"/>
<Compile Remove="**\*" />
</ItemGroup>
</Project>