-
Notifications
You must be signed in to change notification settings - Fork 0
/
templatepack.csproj
21 lines (21 loc) · 1000 Bytes
/
templatepack.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<Version>2.0.0</Version>
<PackageId>QuickstartTemplate</PackageId>
<Title>Payping Corporation Web Api Application</Title>
<Authors>Azaferany</Authors>
<Description>template with all essential tools and configs for basic dotnet 6 api</Description>
<PackageTags>dotnet-new;dotnet;templates;csharp;opentelemetry;api-versioning;efcore;openapi</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoWarn>$(NoWarn);NU5128</NoWarn>
<NoDefaultExcludes>true</NoDefaultExcludes>
</PropertyGroup>
<ItemGroup>
<Content Include=".\**\*" Exclude=".\**\bin\**;.\**\obj\**;.\.git;.\.git\**;.\.idea;.\.idea\**;**\.vscode\**;**\.github\**;README.md;"/>
<Compile Remove="**\*"/>
</ItemGroup>
</Project>