-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReefact.FluentRequestBinder.nuspec
More file actions
54 lines (51 loc) · 3.64 KB
/
Reefact.FluentRequestBinder.nuspec
File metadata and controls
54 lines (51 loc) · 3.64 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
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>Reefact.FluentRequestBinder</id>
<title>Fluent Request Binder</title>
<version>0.3.0</version>
<authors>Sylvain AURAT;Reefact</authors>
<owners>Reefact</owners>
<license type="expression">Apache-2.0</license>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<projectUrl>https://github.com/Reefact/request-validation</projectUrl>
<repository type="git" url="https://github.com/Reefact/fluent-request-binder.git"/>
<icon>images\icon.png</icon>
<description>Provides a simple solution for validating queries and commands - as DTOs - and converting their properties into Value Objects in a fluent manner.</description>
<summary>
Benefit from a high level of decoupling between your API contracts and your domain requests (queries, commands).
Thanks to this library, you can design scalable, flexible and easily testable architectures, without being tied to any framework implementation (REST or other). What's more, it's available in a wide range of .Net versions, as it has been developed for .Net 4.6 and .Net Standard.
Take advantage of the independence and freedom offered by this library, concentrating on the design of your domain and accelerating the development process. Simplify your projects, reduce dependencies and take your code to the next level with this library.
This library could be used as part of a CQRS or Model Driven Design approach.
</summary>
<readme>docs\readme.md</readme>
<releaseNotes></releaseNotes>
<copyright>©2024 Reefact</copyright>
<language>en-US</language>
<tags>DDD DomainDrivenDesign Binding CQRS Decoupling Contract Query Command Request ModelDrivenDesign REST fluent</tags>
<dependencies>
<group targetFramework=".NETFramework4.5" ></group>
<group targetFramework=".NETStandard2.0" ></group>
<group targetFramework=".NET8.0" ></group>
</dependencies>
</metadata>
<files>
<!-- Images -->
<file src="icon.png" target="images\" />
<!-- Library -->
<!-- .NETFramework4.5 -->
<file src="Reefact.FluentRequestBinder\bin\Debug\net45\Reefact.FluentRequestBinder.dll" target="lib\net45\Reefact.FluentRequestBinder.dll" />
<file src="Reefact.FluentRequestBinder\bin\Debug\net45\Reefact.FluentRequestBinder.xml" target="lib\net45\Reefact.FluentRequestBinder.xml" />
<file src="Reefact.FluentRequestBinder\bin\Debug\net45\Reefact.FluentRequestBinder.pdb" target="lib\net45\Reefact.FluentRequestBinder.pdb" />
<!-- .NETStandard2.0 -->
<file src="Reefact.FluentRequestBinder\bin\Debug\netstandard2.0\Reefact.FluentRequestBinder.dll" target="lib\netstandard2.0\Reefact.FluentRequestBinder.dll" />
<file src="Reefact.FluentRequestBinder\bin\Debug\netstandard2.0\Reefact.FluentRequestBinder.xml" target="lib\netstandard2.0\Reefact.FluentRequestBinder.xml" />
<file src="Reefact.FluentRequestBinder\bin\Debug\netstandard2.0\Reefact.FluentRequestBinder.pdb" target="lib\netstandard2.0\Reefact.FluentRequestBinder.pdb" />
<!-- .NET8.0 -->
<file src="Reefact.FluentRequestBinder\bin\Debug\net8.0\Reefact.FluentRequestBinder.dll" target="lib\net8.0\Reefact.FluentRequestBinder.dll" />
<file src="Reefact.FluentRequestBinder\bin\Debug\net8.0\Reefact.FluentRequestBinder.xml" target="lib\net8.0\Reefact.FluentRequestBinder.xml" />
<file src="Reefact.FluentRequestBinder\bin\Debug\net8.0\Reefact.FluentRequestBinder.pdb" target="lib\net8.0\Reefact.FluentRequestBinder.pdb" />
<!-- Documentation -->
<file src="README-EN.md" target="docs\readme.md" />
</files>
</package>