-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
template.nuspec
25 lines (25 loc) · 1.21 KB
/
template.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
<?xml version="1.0" encoding="utf-8"?>
<package >
<metadata>
<id>CleanMinimalApi.Template</id>
<version>1.2.0</version>
<authors>Stephen Walsh</authors>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<projectUrl>https://github.com/stphnwlsh/CleanMinimalApi</projectUrl>
<repository type="git" url="https://github.com/stphnwlsh/CleanMinimalApi" branch="main" />
<description>A template for an API using a streamlined verison of Clean Architecture and .NET Minimal APIs.</description>
<copyright>$copyright$</copyright>
<tags>dotnet api csharp template clean clean-architecture minimal-api minimal</tags>
<icon>images\icon.png</icon>
<license type="file">docs\LICENSE.md</license>
<readme>docs\NUGET.md</readme>
<packageTypes>
<packageType name="Template" />
</packageTypes>
</metadata>
<files>
<file src="icon.png" target="images\" />
<file src="LICENSE.md;NUGET.md;" target="docs\" />
<file src="**" exclude="**\bin\**\*;**\obj\**\*;**\*.user;**\*.lock.json;**\.DS_Store;**\.git\**\*;**\.github\**\*;**\.vs\**\*;**\*LICENSE;**\*.gitattributes;**\*NUGET.md;**\*README.md;**\*.gitignore;**\*nuget.config;" target="content\" />
</files>
</package>