forked from ardalis/CleanArchitecture
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMinimalClean.nuspec
More file actions
38 lines (38 loc) · 1.67 KB
/
MinimalClean.nuspec
File metadata and controls
38 lines (38 loc) · 1.67 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
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Ardalis.MinimalClean.Template</id>
<title>ASP.NET Minimal Clean Architecture Solution</title>
<version>1.0.1</version>
<authors>Steve Smith</authors>
<description>
A simplified Clean Architecture template using vertical slice architecture in a single project.
Perfect for MVPs, smaller applications, or teams wanting architectural guidance without multi-project complexity.
Features Domain-Driven Design patterns, FastEndpoints, Entity Framework Core, and optional Aspire support.
Built with .NET 10 and C#.
</description>
<language>en-US</language>
<license type="expression">MIT</license>
<projectUrl>https://github.com/ardalis/CleanArchitecture</projectUrl>
<releaseNotes>
* Initial release of Minimal Clean Architecture template
* Single-project vertical slice architecture
* Built with .NET 10 and C#.
* FastEndpoints for REPR pattern
* Pragmatic DDD with simplified patterns
* Aspire support
* 1.0.1 fixes a minor bug
</releaseNotes>
<packageTypes>
<packageType name="Template" />
</packageTypes>
<tags>Web ASP.NET "Clean Architecture" "Vertical Slice" minimal ddd domain-driven-design clean-architecture ardalis FastEndpoints</tags>
<icon>./content/icon.png</icon>
<readme>README.md</readme>
</metadata>
<files>
<file src="MinimalClean\**" target="content" exclude="**\bin\**;**\obj\**;**\.git\**;**\.vs\**;**\.vscode\**;**\*.user" />
<file src="README.md" />
<file src="icon.png" target="content" />
</files>
</package>