-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSingleLineArgumentParser.nuspec
More file actions
33 lines (33 loc) · 1.53 KB
/
SingleLineArgumentParser.nuspec
File metadata and controls
33 lines (33 loc) · 1.53 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
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>SingleLineArgumentParser</id>
<title>SingleLineArgumentParser</title>
<version>1.1.0</version>
<authors>Mike Garvey</authors>
<owners>Yevrag35, LLC.</owners>
<icon>images\Parser.png</icon>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<license type="file">licenses\LICENSE.txt</license>
<language>en-US</language>
<projectUrl>https://github.com/Yevrag35/SingleLineArgumentParser</projectUrl>
<description>A library for parsing/mapping arguments from a single string line to .NET objects.</description>
<copyright>Copyright © 2022 Yevrag35, LLC. All rights reserved.</copyright>
<repository type="Git" url="https://github.com/Yevrag35/SingleLineArgumentParser.git" />
<summary>A library for parsing/mapping arguments from a single string line to .NET objects.</summary>
<releaseNotes>Fixes for the parser to ensure arguments name/value pairs are captured correctly.</releaseNotes>
<dependencies>
<group targetFramework=".NetStandard2.0">
<dependency id="MG.Attributes" version="1.0.1"/>
</group>
</dependencies>
</metadata>
<files>
<file src="LICENSE.txt" target="licenses\" />
<file src="assets\Parser.png" target="images\" />
<file src="ArgumentParser\bin\Release\netstandard2.0\ArgumentParser.dll"
target="lib\netstandard2.0\" />
<file src="ArgumentParser\bin\Release\netstandard2.0\ArgumentParser.xml"
target="lib\netstandard2.0\" />
</files>
</package>