-
Notifications
You must be signed in to change notification settings - Fork 107
/
Ardalis.Result.FluentValidation.csproj
37 lines (31 loc) · 1.71 KB
/
Ardalis.Result.FluentValidation.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>Ardalis.Result.FluentValidation</PackageId>
<Title>Ardalis.Result.FluentValidation</Title>
<Description>A simple package to implement FluentValidation with the Ardalis.Result package.</Description>
<Summary>A simple package to implement FluentValidation with the Ardalis.Result package.</Summary>
<PackageTags>result;pattern;web;api;aspnetcore;mvc;FluentValidation;Validation</PackageTags>
<PackageReleaseNotes>
## What's Changed
* Add Bind in addition to Map to support Railway Oriented Programming by @christophercalm in https://github.com/ardalis/Result/pull/215
* Add Map Extension Method to Support Mapping from generic Result to Result by @jmrtnz94 in https://github.com/ardalis/Result/pull/213
* Add identifier and error message constructor to ValidationError by @gordysc in https://github.com/ardalis/Result/pull/209
## New Contributors
* @christophercalm made their first contribution in https://github.com/ardalis/Result/pull/215
* @jmrtnz94 made their first contribution in https://github.com/ardalis/Result/pull/213
* @gordysc made their first contribution in https://github.com/ardalis/Result/pull/209
**Full Changelog**: https://github.com/ardalis/Result/compare/v10.0.0...v10.1.0
</PackageReleaseNotes>
<AssemblyName>Ardalis.Result.FluentValidation</AssemblyName>
<Version>10.1.0</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FluentValidation" />
</ItemGroup>
<ItemGroup>
<None Include="icon.png" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Ardalis.Result\Ardalis.Result.csproj" />
</ItemGroup>
</Project>