forked from tspence/csharp-csv-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CSVFile.nuspec
35 lines (35 loc) · 1.46 KB
/
CSVFile.nuspec
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
<?xml version="1.0"?>
<package >
<metadata>
<id>CSVFile</id>
<version>3.0.2</version>
<title>CSVFile</title>
<authors>Ted Spence</authors>
<owners>Ted Spence</owners>
<license type="file">LICENSE</license>
<projectUrl>https://github.com/tspence/csharp-csv-reader</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A tiny CSV and TSV parsing library with few dependencies. Compatible with most dot net versions.</description>
<releaseNotes>
Supports async / await for I/O using IAsyncEnumerable.
Fix performance issue that affected files with lots of embedded newlines.
Updated for .NET 5.0.
</releaseNotes>
<copyright>Copyright 2006 - 2021</copyright>
<tags>fast csv parser serialization deserialization streaming async</tags>
<repository type="git" url="https://github.com/tspence/csharp-csv-reader" />
<dependencies>
<group targetFramework=".NETFramework4.0"/>
<group targetFramework=".NETFramework4.5"/>
<group targetFramework="net5.0"/>
<group targetFramework=".NETStandard2.0"/>
</dependencies>
</metadata>
<files>
<file src=".\LICENSE*" target=""/>
<file src="src\net40\bin\release\net40\csvfile.*" target="lib\net40" />
<file src="src\net45\bin\release\net45\csvfile.*" target="lib\net45" />
<file src="src\net50\bin\release\net5.0\csvfile.*" target="lib\net5.0" />
<file src="src\netstandard20\bin\release\netstandard2.0\csvfile.*" target="lib\netstandard20" />
</files>
</package>