Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 27ad5b1

Browse files
committed
Merge branch 'dotnet-core'
2 parents d296589 + 2ea80f6 commit 27ad5b1

38 files changed

+838
-522
lines changed

‎.gitignore‎

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
src/CommandLine/bin/*
22
src/CommandLine/obj
3+
src/CommandLine.dotnet/bin/*
4+
src/CommandLine.dotnet/obj
35
demo/ReadText.Demo/bin/*
46
demo/ReadText.Demo/obj
57
tests/CommandLine.Tests/bin/*
68
tests/CommandLine.Tests/obj
9+
tests/CommandLine.DotNet.Tests/bin/*
10+
tests/CommandLine.DotNet.Tests/obj
711
tests/CommandLine.Tests.Properties/bin/*
812
tests/CommandLine.Tests.Properties/obj
913
src/templates/CSharpTemplate/bin/*
@@ -31,3 +35,8 @@ StyleCop.Cache
3135
.fake
3236
*.cache
3337
docs/output/*
38+
artifacts/*
39+
.vs/*
40+
*.xproj.user
41+
*.nuget.targets
42+
*.lock.json

‎CommandLine.sln‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 14
4-
VisualStudioVersion = 14.0.23107.0
4+
VisualStudioVersion = 14.0.25420.1
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CommandLine", "src\CommandLine\CommandLine.csproj", "{E1BD3C65-49C3-49E7-BABA-C60980CB3F20}"
77
EndProject

‎global.json‎

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"projects": [
3+
"src",
4+
"tests"
5+
],
6+
"sdk": {
7+
"version": "1.0.0-preview2-003121"
8+
}
9+
}

‎nuget/CommandLine.nuspec‎

Lines changed: 44 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,44 @@
1-
<?xml version='1.0'?>
2-
<package xmlns='http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd'>
3-
<metadata>
4-
<id>CommandLineParser</id>
5-
<version>2.0.275-beta</version>
6-
<title>Command Line Parser Library</title>
7-
<authors>Giacomo Stelluti Scala</authors>
8-
<description>Terse syntax C# command line parser for .NET with F# support. The Command Line Parser Library offers to CLR applications a clean and concise API for manipulating command line arguments and related tasks.</description>
9-
<releaseNotes/>
10-
<copyright>Copyright (c) 2005 - 2015 Giacomo Stelluti Scala</copyright>
11-
<licenseUrl>https://raw.githubusercontent.com/gsscoder/commandline/master/doc/LICENSE</licenseUrl>
12-
<projectUrl>https://github.com/gsscoder/commandline</projectUrl>
13-
<owners>Giacomo Stelluti Scala</owners>
14-
<iconUrl>https://raw.githubusercontent.com/gsscoder/commandline/master/art/CommandLine20.png</iconUrl>
15-
<requireLicenseAcceptance>false</requireLicenseAcceptance>
16-
<tags>command line argument option parser parsing library syntax shell</tags>
17-
</metadata>
18-
<files>
19-
<file src='..\build\CommandLine.dll' target='lib\net40\CommandLine.dll'/>
20-
<file src='..\build\CommandLine.XML' target='lib\net40\CommandLine.XML'/>
21-
<file src='..\build\CommandLine.dll' target='lib\net45\CommandLine.dll'/>
22-
<file src='..\build\CommandLine.XML' target='lib\net45\CommandLine.XML'/>
23-
<file src='.\readme.txt' target='readme.txt'/>
24-
</files>
25-
</package>
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<id>CommandLineParser</id>
5+
<version>2.1.0-beta</version>
6+
<title>Command Line Parser Library</title>
7+
<authors>Giacomo Stelluti Scala</authors>
8+
<description>Terse syntax C# command line parser for .NET with F# support. The Command Line Parser Library offers to CLR applications a clean and concise API for manipulating command line arguments and related tasks.</description>
9+
<releaseNotes />
10+
<copyright>Copyright (c) 2005 - 2015 Giacomo Stelluti Scala</copyright>
11+
<licenseUrl>https://raw.githubusercontent.com/gsscoder/commandline/master/doc/LICENSE</licenseUrl>
12+
<projectUrl>https://github.com/gsscoder/commandline</projectUrl>
13+
<owners>Giacomo Stelluti Scala</owners>
14+
<iconUrl>https://raw.githubusercontent.com/gsscoder/commandline/master/art/CommandLine20.png</iconUrl>
15+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
16+
<tags>command line argument option parser parsing library syntax shell</tags>
17+
<dependencies>
18+
<group targetFramework=".NETStandard1.3">
19+
<dependency id="System.Collections" version="4.0.11-rc2-24027" />
20+
<dependency id="System.Console" version="4.0.0-rc2-24027" />
21+
<dependency id="System.Diagnostics.Debug" version="4.0.11-rc2-24027" />
22+
<dependency id="System.Globalization" version="4.0.11-rc2-24027" />
23+
<dependency id="System.IO" version="4.1.0-rc2-24027" />
24+
<dependency id="System.Linq" version="4.1.0-rc2-24027" />
25+
<dependency id="System.Linq.Expressions" version="4.0.11-rc2-24027" />
26+
<dependency id="System.Reflection" version="4.1.0-rc2-24027" />
27+
<dependency id="System.Reflection.Extensions" version="4.0.1-rc2-24027" />
28+
<dependency id="System.Reflection.TypeExtensions" version="4.1.0-rc2-24027" />
29+
<dependency id="System.Resources.ResourceManager" version="4.0.1-rc2-24027" />
30+
<dependency id="System.Runtime" version="4.1.0-rc2-24027" />
31+
<dependency id="System.Runtime.Extensions" version="4.1.0-rc2-24027" />
32+
</group>
33+
</dependencies>
34+
</metadata>
35+
<files>
36+
<file src="..\build\CommandLine.dll" target="lib\net40\CommandLine.dll" />
37+
<file src="..\build\CommandLine.XML" target="lib\net40\CommandLine.XML" />
38+
<file src="..\build\CommandLine.dll" target="lib\net45\CommandLine.dll" />
39+
<file src="..\build\CommandLine.XML" target="lib\net45\CommandLine.XML" />
40+
<file src="src\CommandLine.dotnet\bin\portable-dotnet\Release\CommandLine.dll" target="lib\netstandard1.3\CommandLine.dll" />
41+
<file src="src\CommandLine.dotnet\bin\portable-dotnet\Release\CommandLine.xml" target="lib\netstandard1.3\CommandLine.xml" />
42+
<file src=".\readme.txt" target="readme.txt" />
43+
</files>
44+
</package>

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /