forked from intility/templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIntility.Templates.csproj
29 lines (25 loc) · 1.22 KB
/
Intility.Templates.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
28
29
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>1.1.5</PackageVersion>
<PackageId>Intility.Templates</PackageId>
<Title>Intility Templates</Title>
<Authors>Intility</Authors>
<Description>Templates to use when creating an Intility application.</Description>
<PackageTags>dotnet-new;templates;intility</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>$(NoWarn);NU5128</NoWarn>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoDefaultExcludes>true</NoDefaultExcludes>
</PropertyGroup>
<ItemGroup>
<Content Include="*\**\*" Exclude="**\bin\**;**\obj\**;**\.vscode\**" />
<Content Include="iwebapiproject\**\*" Exclude="iwebapiproject\.gitlab-ci.yml;iwebapiproject\README.md;iwebapiproject\.template.config\**" Pack="true" PackagePath="content\iwebapi\Company.WebApplication1" />
<Compile Remove="**\*" />
<None Include="LICENSE" Pack="true" PackagePath=""/>
</ItemGroup>
</Project>