-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathINIFileParser.nuspec
More file actions
27 lines (25 loc) · 1.25 KB
/
INIFileParser.nuspec
File metadata and controls
27 lines (25 loc) · 1.25 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
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<version>1.0</version>
<authors>Ricardo Amores Hernández</authors>
<owners>rickyah</owners>
<licenseUrl>https://github.com/rickyah/ini-parser/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/rickyah/ini-parser</projectUrl>
<id>ini-parser</id>
<title>INI Parser</title>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A .NET, Mono and Unity3d compatible(*) library for reading/writing INI data from IO streams, file streams, and strings written in C#.
Also implements merging operations, both for complete ini files, sections, or even just a subset of the keys contained by the files.
(*) This library is 100% .NET code and does not have any dependencies on Windows API calls in order to be portable.</description>
<summary>A simple C# library for reading and writing INI files</summary>
<releaseNotes>
</releaseNotes>
<tags>ini</tags>
</metadata>
<files>
<file src="../../lib/INIFileParser.dll" target="lib/net20"/>
<file src="../../lib/INIFileParser.xml" target="lib/net20"/>
<file src="../../lib/INIFileParser.dll.mdb" target="lib/net20"/>
</files>
</package>