-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathCleanArchitecture.nuspec
37 lines (30 loc) · 1.44 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
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>SSW.CleanArchitecture.Template</id>
<version>2024.11.19</version>
<title>SSW Clean Architecture Template</title>
<authors>SSW</authors>
<description>SSW Clean Architecture Solution Template for .NET.</description>
<summary>
This is a solution template for creating a WebAPI with ASP.NET Core following the principles of Clean Architecture.
</summary>
<releaseNotes>
</releaseNotes>
<projectUrl>https://github.com/SSWConsulting/SSW.CleanArchitecture</projectUrl>
<repository type="git" url="https://github.com/SSWConsulting/SSW.CleanArchitecture.git" branch="main" />
<license type="expression">MIT</license>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<tags>clean-architecture project template csharp dotnet ssw</tags>
<icon>icon.png</icon>
<packageTypes>
<packageType name="Template" />
</packageTypes>
</metadata>
<files>
<file src=".template.config\icon.png" target="" />
<file src="README.md" />
<file src=".\**" target="content" exclude="**\bin\**;**\obj\**;**\.vs\**;**\.vscode\**;**\.git\**;**\.github\**;**\LICENSE;**\.idea\**;CODE_OF_CONDUCT.yml" />
<file src=".\.github\**" target="content\.github" exclude="CODEOWNERS;settings.yml;workflows\package.yml;workflows\update-settings.yml" />
</files>
</package>