-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathTemplatePack.csproj
43 lines (22 loc) · 1.02 KB
/
TemplatePack.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
33
34
35
36
37
38
39
40
41
42
43
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>1.0.0</PackageVersion>
<PackageId>Mahedee.CleanArchitecture.Templates</PackageId>
<Title>Clean Architecture Template</Title>
<Authors>Mahedee Hasan</Authors>
<Description>Clean Architecture Template</Description>
<PackageTags>dotnet-new;templates;clean-architecture</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoWarn>$(NoWarn);NU5128</NoWarn>
<NoDefaultExcludes>true</NoDefaultExcludes>
<RepositoryUrl>https://github.com/mahedee/public-packages</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<Content Include="CleanArchitecture\**\*" Exclude="CleanArchitecture\**\bin\**;CleanArchitecture\**\obj\**" />
<Compile Remove="..\**\*" />
</ItemGroup>
</Project>