-
Notifications
You must be signed in to change notification settings - Fork 10
/
CleanArchitecture.nuspec
29 lines (25 loc) · 1.39 KB
/
CleanArchitecture.nuspec
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
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Clean.Architecture.Solution.Template</id>
<version>1.0.0</version>
<title>Clean Architecture Solution Template</title>
<authors>Truong Nhon</authors>
<description>Clean Architecture Solution Template for .NET 8.</description>
<summary>A template Clean Architecture project in C#</summary>
<releaseNotes>Initial release of the Clean Architecture Template</releaseNotes>
<projectUrl>https://github.com/nhonvo/clean-architecture-net-8.0.git</projectUrl>
<repository type="git" url="https://github.com/nhonvo/clean-architecture-net-8.0.git" branch="main" />
<license type="expression">MIT</license>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<tags>clean-architecture project template csharp dotnet angular react</tags>
<readme>README.md</readme>
<packageTypes>
<packageType name="Template" />
</packageTypes>
</metadata>
<files>
<file src="README.md" />
<file src=".\**" target="content" exclude="**\bin\**;**\obj\**;.\.vs\**;.\.vscode\**;**\ClientApp\dist\**;**\wwwroot\dist\**;content\Directory.Build.*;.\.git\**;.\.github\workflows\package.yml;.\.github\workflows\codeql.yml;.\.github\ISSUE_TEMPLATE\**;.\.github\icon.png;.\CODE_OF_CONDUCT.md;.\LICENSE;.\README.md;" />
</files>
</package>