forked from jasontaylordev/CleanArchitecture
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCleanArchitecture.nuspec
More file actions
46 lines (39 loc) · 2.23 KB
/
CleanArchitecture.nuspec
File metadata and controls
46 lines (39 loc) · 2.23 KB
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
41
42
43
44
45
46
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Clean.Architecture.Solution.Template</id>
<version>9.0.12</version>
<title>Clean Architecture Solution Template</title>
<authors>JasonTaylorDev</authors>
<description>Clean Architecture Solution Template for .NET 9.</description>
<summary>
A Clean Architecture Solution Template for creating apps using Angular, React, or Web API only with ASP.NET Core.
</summary>
<releaseNotes>
🐛 Fixed bug with registration of LoggingBehaviour.
🐛 Fixed bug with reuse of ValidationContext in ValidationBehaviour.
✨ Refactored endpoint mapping to use RouteGroupBuilder.
✨ Implementation of TSX support in React template.
🐛 Fix KeyVault / secret name mismatch in Bicep templates.
📦 Replace FluentAssertions with Shouldly in tests.
🐛 Fix using dotnet-ef with artifacts path.
✨ Improved performance of authorisation.
✨ Enable simplified output paths.
</releaseNotes>
<projectUrl>https://github.com/JasonTaylorDev/CleanArchitecture</projectUrl>
<repository type="git" url="https://github.com/JasonTaylorDev/CleanArchitecture.git" branch="main" />
<license type="expression">MIT</license>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<tags>clean-architecture project template csharp dotnet angular react aspire</tags>
<icon>icon.png</icon>
<readme>README.md</readme>
<packageTypes>
<packageType name="Template" />
</packageTypes>
</metadata>
<files>
<file src=".template.config\icon.png" />
<file src="README.md" />
<file src=".\**" target="content" exclude="**\node_modules\**;**\tools\**;**\bin\**;**\obj\**;.\.vs\**;.\.vscode\**;**\ClientApp\dist\**;**\wwwroot\dist\**;content\Directory.Build.*;.\.git\**;.\.github\workflows\jekyll-gh-pages.yml;.\.github\workflows\package.yml;.\.github\workflows\codeql.yml;.\.github\workflows\build.yml;.\.github\ISSUE_TEMPLATE\**;.\.github\icon.png;.\.github\FUNDING.yml;.\CODE_OF_CONDUCT.md;.\LICENSE;.\README.md;.\CleanArchitecture.nuspec;.\src\Web\app.db;" />
</files>
</package>