-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathValidate.Lib.csproj
More file actions
30 lines (27 loc) · 1.34 KB
/
Validate.Lib.csproj
File metadata and controls
30 lines (27 loc) · 1.34 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>validatelib</AssemblyName>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup>
<!-- Properties related to NuGet packaging: -->
<IsPackable>True</IsPackable>
<PackageId>CsvValidator</PackageId>
<Title>CSV Validator: Fast text file validation</Title>
<Description>Library for complex validation of delimited text files.</Description>
<PackageReleaseNotes>A changelog is available at https://github.com/barry-jones/csv-validator/blob/master/CHANGELOG.md.</PackageReleaseNotes>
<Authors>Barry Jones</Authors>
<PackageLicenseUrl>https://github.com/barry-jones/csv-validator/blob/master/LICENSE</PackageLicenseUrl>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<NoPackageAnalysis>True</NoPackageAnalysis>
<PackageTags>csvvalidator;csv;text;validator;validation</PackageTags>
<PackageProjectUrl>https://github.com/barry-jones/csv-validator</PackageProjectUrl>
<RepositoryUrl>https://github.com/barry-jones/csv-validator</RepositoryUrl>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
</Project>