-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
CleanArchitectureNugetPack.csproj
34 lines (30 loc) · 1.39 KB
/
CleanArchitectureNugetPack.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<Version>9.0.0</Version>
<PackageId>Sam.CleanArchitecture.Template</PackageId>
<Title>Clean Architecture</Title>
<TargetFramework>net9.0</TargetFramework>
<Authors>Saman Azadi</Authors>
<Description>The purpose of this template is to provide a robust and streamlined methodology for enterprise application development, capitalizing on the strengths of Clean Architecture and ASP.NET Core.</Description>
<PackageTags>C#;Api;ASP-Dotnet-Core-WebAPI;Clean-Architecture</PackageTags>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<PackageProjectUrl>https://github.com/samanazadi1996/Sam.CleanArchitecture</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/samanazadi1996/Sam.CleanArchitecture.git</RepositoryUrl>
<NoPackageAnalysis>true</NoPackageAnalysis>
<PackageIcon>TemplateIcon.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<Content Include="Source\**\*" Exclude="**\bin\**\*;**\obj\**\*;**\.vs\**\*;**\.vscode\**\*" />
<Content Include="Templates\**\*" Exclude="**\bin\**\*;**\obj\**\*;**\.vs\**\*;**\.vscode\**\*" />
<Compile Remove="**\*" />
</ItemGroup>
<ItemGroup>
<None Update="TemplateIcon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>