forked from fullstackhero/dotnet-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FSH.WebApi.nuspec
26 lines (26 loc) · 1.25 KB
/
FSH.WebApi.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
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>FullStackHero.WebAPI.Boilerplate</id>
<title>.NET WebAPI Boilerplate - FullStackHero</title>
<version>1.0.0</version>
<authors>Mukesh Murugan</authors>
<description>
Clean Architecture Template for .NET 7.0 WebAPI built with Multitenancy Support.
</description>
<language>en-US</language>
<license type="file">./content/LICENSE</license>
<copyright>2023</copyright>
<readme>./content/README.md</readme>
<projectUrl>https://fullstackhero.net/dotnet-webapi-boilerplate/general/getting-started/</projectUrl>
<repository type="git" url="https://github.com/fullstackhero/dotnet-webapi-boilerplate.git"/>
<packageTypes>
<packageType name="Template" />
</packageTypes>
<tags>cleanarchitecture clean architecture WebAPI mukesh codewithmukesh fullstackhero solution csharp</tags>
<icon>./content/icon.png</icon>
</metadata>
<files>
<file src=".\**" target="content" exclude="**\bin\**;**\obj\**;**\.git\**;**\.github\**;**\*.user;**\.vs\**;**\Images\**;**\Logs\**;**\.terraform\**;**\.terraform.lock.hcl;**\terraform.tfstate;**\.nupkg;**\nupkg;" />
</files>
</package>