forked from ardalis/CleanArchitecture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCleanArchitecture.nuspec
49 lines (49 loc) · 3.98 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
38
39
40
41
42
43
44
45
46
47
48
49
<?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>10.0.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 to .NET 9!
* Use ConnectAsync in MimeKitEmailSender for async SMTP connection by @samanazadi1996 in https://github.com/ardalis/CleanArchitecture/pull/837
* Using GlobalUsings class file for commonly used namespaces by @aminsharifi in https://github.com/ardalis/CleanArchitecture/pull/844
* Bump Azure.Identity from 1.12.1 to 1.13.0 by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/842
* Added ADR for Dependency Injection Framework Update #829 by @Zaki2409 in https://github.com/ardalis/CleanArchitecture/pull/840
* Bump Serilog.AspNetCore from 8.0.2 to 8.0.3 by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/839
* Bump ReportGenerator from 5.3.10 to 5.3.11 by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/835
* Bump Microsoft.EntityFrameworkCore.SqlServer, Microsoft.EntityFrameworkCore.Relational, Microsoft.Extensions.Logging.Abstractions and Microsoft.Extensions.Logging by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/834
* Bump Microsoft.EntityFrameworkCore.Sqlite, Microsoft.EntityFrameworkCore.Relational, Microsoft.Extensions.Logging.Abstractions and Microsoft.Extensions.Logging by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/833
* Bump Microsoft.EntityFrameworkCore.Tools, Microsoft.EntityFrameworkCore.Design, Microsoft.EntityFrameworkCore.Relational, Microsoft.Extensions.Logging.Abstractions and Microsoft.Extensions.Logging by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/830
* Bump Microsoft.EntityFrameworkCore.InMemory from 8.0.8 to 8.0.10 by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/850
* Bump Microsoft.AspNetCore.Mvc.Testing from 8.0.8 to 8.0.10 by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/851
* Update to .NET 9.0 RC2 by @KyleMcMaster in https://github.com/ardalis/CleanArchitecture/pull/852
* Adding Vogen Value Objects to Sample by @ardalis in https://github.com/ardalis/CleanArchitecture/pull/855
* Bump Ardalis.SharedKernel from 1.6.0 to 2.1.1 by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/856
* Adds Aspire by @benjaminmishra in https://github.com/ardalis/CleanArchitecture/pull/859
* Bump NSubstitute from 5.1.0 to 5.3.0 by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/861
* Bump Ardalis.Result from 10.0.0 to 10.1.0 by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/860
* Bump Azure.Identity from 1.13.0 to 1.13.1 by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/858
* Bump Ardalis.Result.AspNetCore from 10.0.0 to 10.1.0 by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/862
* Bump FastEndpoints and FastEndpoints.Swagger by @dependabot in https://github.com/ardalis/CleanArchitecture/pull/863
</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>