-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExpressValidator.Extensions.DependencyInjection.csproj
More file actions
64 lines (54 loc) · 2.33 KB
/
ExpressValidator.Extensions.DependencyInjection.csproj
File metadata and controls
64 lines (54 loc) · 2.33 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
55
56
57
58
59
60
61
62
63
64
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.3.5</Version>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Authors>Andrey Kolesnichenko</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/kolan72/ExpressValidator/tree/main/src/ExpressValidator.Extensions.DependencyInjection</PackageProjectUrl>
<PackageIcon>ExpressValidator.png</PackageIcon>
<PackageReadmeFile>NuGet.md</PackageReadmeFile>
<PackageIconUrl />
<RepositoryUrl>https://github.com/kolan72/ExpressValidator.git</RepositoryUrl>
<PackageTags>FluentValidation Validation DependencyInjection</PackageTags>
<Description>The ExpressValidator.Extensions.DependencyInjection package extends ExpressValidator to provide integration with Microsoft Dependency Injection.</Description>
<Copyright>Copyright 2024 Andrey Kolesnichenko</Copyright>
<AssemblyVersion>0.3.5.0</AssemblyVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1591</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>1701;1702;1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Remove="docs\NuGet.md" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ExpressValidator" Version="0.5.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.4" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="9.0.4" />
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
<_Parameter1>ExpressValidator.Extensions.DependencyInjection.Tests</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup>
<None Include="..\..\ExpressValidator.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="docs\NuGet.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<None Update="README.md">
<PackagePath>\</PackagePath>
<Pack>true</Pack>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="docs\" />
</ItemGroup>
</Project>