forked from commandlineparser/commandline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CommandLine.nuspec
44 lines (44 loc) · 2.78 KB
/
CommandLine.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
44
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>CommandLineParser</id>
<version>$version$</version>
<title>Command Line Parser Library</title>
<authors>gsscoder nemec ericnewton76</authors>
<description>Terse syntax C# command line parser for .NET. For FSharp support see CommandLineParser.FSharp. The Command Line Parser Library offers to CLR applications a clean and concise API for manipulating command line arguments and related tasks.</description>
<releaseNotes />
<copyright>Copyright (c) 2005 - 2018 Giacomo Stelluti Scala & Contributors</copyright>
<licenseUrl>https://github.com/commandlineparser/commandline/blob/master/License.md</licenseUrl>
<projectUrl>https://github.com/commandlineparser/commandline</projectUrl>
<owners>Giacomo Stelluti Scala</owners>
<iconUrl>https://raw.githubusercontent.com/commandlineparser/commandline/master/art/CommandLine20.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<tags>command line commandline argument option parser parsing library syntax shell</tags>
<dependencies>
<group targetFramework=".NETStandard1.5">
<dependency id="System.Collections" version="4.0.11-rc2-24027" />
<dependency id="System.Console" version="4.0.0-rc2-24027" />
<dependency id="System.Diagnostics.Debug" version="4.0.11-rc2-24027" />
<dependency id="System.Globalization" version="4.0.11-rc2-24027" />
<dependency id="System.IO" version="4.1.0-rc2-24027" />
<dependency id="System.Linq" version="4.1.0-rc2-24027" />
<dependency id="System.Linq.Expressions" version="4.0.11-rc2-24027" />
<dependency id="System.Reflection" version="4.1.0-rc2-24027" />
<dependency id="System.Reflection.Extensions" version="4.0.1-rc2-24027" />
<dependency id="System.Reflection.TypeExtensions" version="4.1.0-rc2-24027" />
<dependency id="System.Resources.ResourceManager" version="4.0.1-rc2-24027" />
<dependency id="System.Runtime" version="4.1.0-rc2-24027" />
<dependency id="System.Runtime.Extensions" version="4.1.0-rc2-24027" />
</group>
</dependencies>
</metadata>
<files>
<file src="net4x\CommandLine.dll" target="lib\net40\CommandLine.dll" />
<file src="net4x\CommandLine.XML" target="lib\net40\CommandLine.XML" />
<file src="net4x\CommandLine.dll" target="lib\net45\CommandLine.dll" />
<file src="net4x\CommandLine.XML" target="lib\net45\CommandLine.XML" />
<file src="netstandard1.5\CommandLine.dll" target="lib\netstandard1.5\CommandLine.dll" />
<file src="netstandard1.5\CommandLine.XML" target="lib\netstandard1.5\CommandLine.xml" />
<file src="readme.md" target="readme.md" />
</files>
</package>