-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCSVFile.nuspec
43 lines (42 loc) · 1.94 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
36
37
38
39
40
41
42
43
<?xml version="1.0"?>
<package >
<metadata>
<id>CSVFile</id>
<version>3.2.0</version>
<title>CSVFile</title>
<authors>Ted Spence</authors>
<owners>Ted Spence</owners>
<license type="file">docs/LICENSE</license>
<projectUrl>https://github.com/tspence/csharp-csv-reader</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<summary>Tiny and fast CSV and TSV parsing library (40KB) with zero dependencies. Compatible with DotNetFramework (2.0 onwards) and DotNetCore.</summary>
<description>Tiny and fast CSV and TSV parsing library (40KB) with zero dependencies. Compatible with DotNetFramework (2.0 onwards) and DotNetCore.</description>
<icon>docs/icons8-spreadsheet-96.png</icon>
<releaseNotes>
August 5, 2024
* Fix issue with Windows-style newlines crossing chunks found by @joelverhagen
* Fix issue with endless loops reported by @wvvegt
</releaseNotes>
<readme>docs/README.md</readme>
<copyright>Copyright 2006 - 2024</copyright>
<tags>fast csv parser serialization deserialization streaming async</tags>
<repository type="git" url="https://github.com/tspence/csharp-csv-reader" />
<dependencies>
<group targetFramework=".NETFramework2.0"/>
<group targetFramework=".NETFramework4.0"/>
<group targetFramework=".NETFramework4.5"/>
<group targetFramework=".NETStandard2.0"/>
<group targetFramework="net5.0"/>
</dependencies>
</metadata>
<files>
<file src=".\LICENSE" target="docs/LICENSE"/>
<file src=".\README.md" target="docs/README.md"/>
<file src=".\icons8-spreadsheet-96.png" target="docs/icons8-spreadsheet-96.png"/>
<file src="src\net20\bin\Release\*" target="lib\net20" />
<file src="src\net40\bin\Release\*" target="lib\net40" />
<file src="src\net45\bin\Release\*" target="lib\net45" />
<file src="src\netstandard20\bin\Release\netstandard2.0\*" target="lib\netstandard20" />
<file src="src\net50\bin\Release\net5.0\*" target="lib\net5.0" />
</files>
</package>