forked from samanazadi1996/Sam.CleanArchitecture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCleanArchitectureNugetPack.csproj
34 lines (30 loc) · 1.4 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>8.4.0</Version>
<PackageId>Sam.CleanArchitecture.Template</PackageId>
<Title>Clean Architecture</Title>
<TargetFramework>net8.0</TargetFramework>
<Authors>Saman Azadi</Authors>
<Description>Loosely-Coupled and Inverted-Dependency Architecture in ASP.NET Core 8 WebApi Template with good design patterns and practices for enterprise application, so that you can get started in no time.</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>