-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.nuspec
30 lines (30 loc) · 1.28 KB
/
.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
<?xml version="1.0"?>
<package>
<metadata>
<id>TS.CleanArchitecture</id>
<version>8.1.6</version>
<title>ASP.NET Clean Architecture Solution</title>
<authors>Taner Saydam</authors>
<owners>Taner Saydam</owners>
<description>A template for creating projects using Clean Architecture.</description>
<releaseNotes>Initial release of the project template.</releaseNotes>
<language>en-US</language>
<projectUrl>http://www.tanersaydam.net/</projectUrl>
<icon>./content/icon.jpg</icon>
<repository type="git" url="https://github.com/TanerSaydam/CleanArchitecture.Template"/>
<tags>Web ASP.NET "Clean Architecture" clean-architecture clean architecture ts SOLID</tags>
<license type="file">LICENSE.txt</license>
<readme>README.md</readme>
<packageTypes>
<packageType name="Template" />
</packageTypes>
<dependencies>
<!-- If your template has dependencies to other packages, list them here -->
</dependencies>
</metadata>
<files>
<file src=".\**" target="content" exclude="**\bin\**;**\obj\**;**\.git\**;**\.github\**;**\*.user;**\.vs\**;**\.vscode\**;**\.gitignore;**\sample\**;**\images\**" />
<file src="README.md" />
<file src="LICENSE.txt" />
</files>
</package>