-
Notifications
You must be signed in to change notification settings - Fork 34
/
CleanArcTemplate.nuspec
40 lines (32 loc) · 1.79 KB
/
CleanArcTemplate.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
38
39
40
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Bobby.CleanArcTemplate</id>
<version>9.0.2</version>
<title>Clean Architecture Solution Template</title>
<authors>BabakTaremi</authors>
<description>Clean Architecture Solution Template for and .NET 9. With many features available out of the box </description>
<summary>
Ready to develop template based on clean architecture principles. Supports ASP NET Core Identity integrated with JWE tokens, OTP authentication, stand alone plugin development, CQRS pattern using MediatR library and dynamic permission management system out of the box
</summary>
<releaseNotes>
Fixed URL grouping by version where versions having dot were not detected properly using Regex
</releaseNotes>
<projectUrl>https://github.com/babaktaremi/Clean-Architecture-Template</projectUrl>
<repository type="git" url="https://github.com/babaktaremi/Clean-Architecture-Template" branch="master" />
<license type="expression">MIT</license>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<tags>clean-architecture project template csharp dotnet Identity JWE Identity-OTP CQRS Plugin-based</tags>
<icon>icon.png</icon>
<packageTypes>
<packageType name="Template" />
</packageTypes>
</metadata>
<files>
<file src=".template.config\icon.png" />
<file src="README.md" />
<file src="Dockerfile" />
<file src="docker-compose.yml" />
<file src=".\**" target="content" exclude="**\node_modules\**;**\bin\**;**\obj\**;**\.vs\**;**\.vscode\**;**\ClientApp\dist\**;**\wwwroot\dist\**;content\Directory.Build.*;**\.git\**;**\.github\**;**\CODE_OF_CONDUCT.md;**\LICENSE;**\README.md;**\nuget.exe" />
</files>
</package>