-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathFluentValidationsExtensions.csproj
More file actions
50 lines (43 loc) · 2.06 KB
/
FluentValidationsExtensions.csproj
File metadata and controls
50 lines (43 loc) · 2.06 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>MatthiWare.CommandLine.Extensions.FluentValidations</RootNamespace>
<AssemblyName>CommandLineParser.FluentValidations</AssemblyName>
<Version>0.7.0</Version>
<Authors>Matthias Beerens</Authors>
<Company>MatthiWare</Company>
<Product>FluentValidations Extension For MatthiWare.CommandLineParser</Product>
<Description>FluentValidations extension for MatthiWare.CommandLineParser</Description>
<PackageProjectUrl>https://github.com/MatthiWare/CommandLineParser.Core</PackageProjectUrl>
<PackageLicenseUrl></PackageLicenseUrl>
<RepositoryUrl>https://github.com/MatthiWare/CommandLineParser.Core</RepositoryUrl>
<PackageTags>Commandline parser commandline-parser cli fluent-validations extension</PackageTags>
<LangVersion>7.3</LangVersion>
<AssemblyVersion>0.7.0.0</AssemblyVersion>
<FileVersion>0.7.0.0</FileVersion>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReleaseNotes>- Update license to MIT</PackageReleaseNotes>
<Copyright>Copyright Matthias Beerens 2019</Copyright>
<PackageId>MatthiWare.CommandLineParser.Extensions.FluentValidations</PackageId>
<RepositoryType>git</RepositoryType>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>.\CommandLineParser.FluentValidations.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>.\CommandLineParser.FluentValidations.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FluentValidation" Version="11.4.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\CommandLineParser\CommandLineParser.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="../../LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>