-
Notifications
You must be signed in to change notification settings - Fork 2
/
FluentValidationForMassTransit.csproj
30 lines (26 loc) · 1.27 KB
/
FluentValidationForMassTransit.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TargetFrameworks>net6.0;netstandard2.1;netstandard2.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<PackageTags>GreenPipes MassTransit FluentValidation validation validators pipeline pipe</PackageTags>
<PackageProjectUrl>https://github.com/BenjaminCharlton/FluentValidationForMassTransit</PackageProjectUrl>
<RepositoryUrl>https://github.com/BenjaminCharlton/FluentValidationForMassTransit</RepositoryUrl>
<Description>Allows functionality from the FluentValidation libraries to used in a MassTransit (GreenPipes) pipeline.</Description>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Authors>Benjamin Charlton</Authors>
<Version>3.0.0</Version>
<PackageReleaseNotes>Upgraded to MassTransit 8.0</PackageReleaseNotes>
<Company>Energetic Apps</Company>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FluentValidation" Version="11.1.0" />
<PackageReference Include="MassTransit" Version="8.0.5" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>