-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTemplates.DotNet.csproj
32 lines (26 loc) · 1.17 KB
/
Templates.DotNet.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
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>1.0</PackageVersion>
<PackageId>Templates.DotNet</PackageId>
<Title>.NET Templates</Title>
<Authors>José Franco</Authors>
<Description>Boilerplate .NET project templates.</Description>
<PackageTags>dotnet-new;templates</PackageTags>
<TargetFramework>net5.0</TargetFramework>
<VersionPrefix>1.0.1</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<RepositoryUrl>https://github.com/josepfranco/Templates.DotNet</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoDefaultExcludes>true</NoDefaultExcludes>
<NoWarn>$(NoWarn);NU5128</NoWarn>
</PropertyGroup>
<ItemGroup>
<Content Include="Microservice.CSharp\**\*" Exclude="Microservice.CSharp\**\bin\**;Microservice.CSharp\**\obj\**" />
<Content Include="Library.CSharp\**\*" Exclude="Library.CSharp\**\bin\**;Library.CSharp\**\obj\**" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>