forked from ardalis/CleanArchitecture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CleanArchitecture.nuspec
37 lines (37 loc) · 2.27 KB
/
CleanArchitecture.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
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Ardalis.CleanArchitecture.Template</id>
<title>ASP.NET Core Clean Architecture Solution</title>
<version>9.2.0</version>
<authors>Steve Smith</authors>
<description>
The Clean Architecture Solution Template popularized by Steve @ardalis Smith. Provides a great starting point for modern and/or DDD solutions built with .NET 8 and C# 12.
Features zero tight coupling to database or data access technology.
</description>
<language>en-US</language>
<license type="expression">MIT</license>
<projectUrl>https://github.com/ardalis/CleanArchitecture</projectUrl>
<releaseNotes>
* Update all NuGet dependencies
* Remove duplicate addscoped by @Emopusta in https://github.com/ardalis/CleanArchitecture/pull/703
* add cancellation token to mediatr send requests. by @Emopusta in https://github.com/ardalis/CleanArchitecture/pull/704
* Update README.md by @ardalis in https://github.com/ardalis/CleanArchitecture/pull/705
* Rename GetById.GetProjectByIdRequest.cs to GetById.GetContributorByIdRequest.cs by @Zaigham-Gulzar in https://github.com/ardalis/CleanArchitecture/pull/721
* Migrate Autofac DI to Vanilla DI in the sample project (#723) by @marcotello in https://github.com/ardalis/CleanArchitecture/pull/728
* Rename variable from command to query to maintain consistency by @Ahmed-SM in https://github.com/ardalis/CleanArchitecture/pull/733
* Fix spelling by @thahnnwb in https://github.com/ardalis/CleanArchitecture/pull/735
* Adding async capability to database seeding operations by @samanazadi1996 in https://github.com/ardalis/CleanArchitecture/pull/734
</releaseNotes>
<packageTypes>
<packageType name="Template" />
</packageTypes>
<tags>Web ASP.NET "Clean Architecture" ddd domain-driven-design clean-architecture clean architecture ardalis SOLID</tags>
<icon>./content/icon.png</icon>
<readme>README.md</readme>
</metadata>
<files>
<file src=".\**" target="content" exclude="**\bin\**;**\obj\**;**\.git\**;**\.github\**;**\*.user;**\.vs\**;**\.vscode\**;**\.gitignore;**\sample\**" />
<file src="README.md" />
</files>
</package>