-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCleanArchitecture.WebApi.csproj
More file actions
44 lines (36 loc) · 1.66 KB
/
CleanArchitecture.WebApi.csproj
File metadata and controls
44 lines (36 loc) · 1.66 KB
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
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageId>Hack3rlife.ASP.NETCore.WebAPI</PackageId>
<Title>Clean Architecture ASP .NET Core WebAPI Template</Title>
<Authors>hack3rlife</Authors>
<Description>Clean Architecture Project Template for ASP .NET Core WebAPI Projects.</Description>
<TargetFramework>netcoreapp3.1</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>Content</ContentTargetFolders>
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageOutputPath>./nupkg</PackageOutputPath>
<Authors>hack3rlife</Authors>
<PackageTags>dotnet-new;templates;hack3rlife;clean-architecture;c#;webapi;netcoreapp31</PackageTags>
<RepositoryType>git</RepositoryType>
<PackageCopyright>hack3rlife</PackageCopyright>
<PackageProjectUrl>https://github.com/hack3rlife/cleanarchitecture.template.webapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/hack3rlife/cleanarchitecture.template.webapi</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**;templates\**\.vs\**" />
<Compile Remove="**\*" />
</ItemGroup>
<ItemGroup>
<Content Include="img\icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>