-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtatnet-template-pack.csproj
30 lines (25 loc) · 1.17 KB
/
tatnet-template-pack.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
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>1.0.0.0</PackageVersion>
<PackageId>tatnet-template-pack</PackageId>
<Title>Fatih Tatoğlu Dotnet Core Template Package</Title>
<Authors>Fatih Tatoğlu</Authors>
<Description>Templates to use when creating an application with old C# templates.</Description>
<PackageTags>dotnet-new;templates;fatih tatoglu</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoWarn>$(NoWarn);NU5128</NoWarn>
<NoDefaultExcludes>true</NoDefaultExcludes>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/fatihtatoglu/tatnet-template-pack</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Copyright>Fatih Tatoğlu</Copyright>
</PropertyGroup>
<ItemGroup>
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>