Skip to content

Commit

Permalink
Update configuration so project builds in paket again
Browse files Browse the repository at this point in the history
  • Loading branch information
nemec committed Nov 5, 2016
1 parent 3ac8327 commit f32641a
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 27 deletions.
6 changes: 3 additions & 3 deletions nuget/CommandLine.nuspec
Expand Up @@ -7,13 +7,13 @@
<authors>Giacomo Stelluti Scala</authors>
<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>
<releaseNotes />
<copyright>Copyright (c) 2005 - 2015 Giacomo Stelluti Scala</copyright>
<licenseUrl>https://raw.githubusercontent.com/gsscoder/commandline/master/doc/LICENSE</licenseUrl>
<copyright>Copyright (c) 2005 - 2016 Giacomo Stelluti Scala</copyright>
<licenseUrl>https://github.com/gsscoder/commandline/blob/master/License.md</licenseUrl>
<projectUrl>https://github.com/gsscoder/commandline</projectUrl>
<owners>Giacomo Stelluti Scala</owners>
<iconUrl>https://raw.githubusercontent.com/gsscoder/commandline/master/art/CommandLine20.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<tags>command line argument option parser parsing library syntax shell</tags>
<tags>command line commandline argument option parser parsing library syntax shell</tags>
<dependencies>
<group targetFramework=".NETStandard1.3">
<dependency id="System.Collections" version="4.0.11-rc2-24027" />
Expand Down
3 changes: 0 additions & 3 deletions paket.lock
@@ -1,6 +1,5 @@
NUGET
remote: https://www.nuget.org/api/v2
specs:
FAKE (4.3.4)
FluentAssertions (4.0)
System.Collections (>= 4.0.10) - framework: dnxcore50
Expand Down Expand Up @@ -235,9 +234,7 @@ NUGET
xunit.runner.visualstudio (2.1) - version_in_path: true
GITHUB
remote: gsscoder/CSharpx
specs:
src/CSharpx/EnumerableExtensions.cs (1ae4e7b6ac1b19493f333e23c9ae636a01b23862)
src/CSharpx/Maybe.cs (1ae4e7b6ac1b19493f333e23c9ae636a01b23862)
remote: gsscoder/railwaysharp
specs:
src/RailwaySharp/ErrorHandling.cs (fa4f11173e470d558df80987e69e6ab10f977fcd)
8 changes: 4 additions & 4 deletions src/CommandLine/project.json
Expand Up @@ -47,10 +47,10 @@
"imports": [ "netcore45" ]
},
"net40": {
"frameworkAssemblies": { },
"buildOptions": {
"define": [ "ERRH_DISABLE_INLINE_METHODS", "NET40" ]
}
"frameworkAssemblies": {},
"buildOptions": {
"define": [ "ERRH_DISABLE_INLINE_METHODS", "NET40" ]
}
},
"net45": {
"frameworkAssemblies": { }
Expand Down
40 changes: 23 additions & 17 deletions tests/CommandLine.Tests/project.json
Expand Up @@ -11,23 +11,29 @@

"testRunner": "xunit",

"frameworks": {
"netcoreapp1.0": {
"buildOptions": {
"define": [ "PLATFORM_DOTNET", "SKIP_FSHARP" ],
"keyFile": "../../CommandLine.snk"
},
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.0"
"frameworks": {
"netcoreapp1.0": {
"buildOptions": {
"define": [ "PLATFORM_DOTNET", "SKIP_FSHARP" ],
"keyFile": "../../CommandLine.snk"
},
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.0"
},
"System.Reflection": "4.1.0",
"System.Reflection.TypeExtensions": "4.1.0",
"FluentAssertions": "4.2.2",
"dotnet-test-xunit": "2.2.0-*"
},
"imports": [ "dotnet5.4", "dnxcore50", "portable-net451+win81" ]
},
"System.Reflection": "4.1.0",
"System.Reflection.TypeExtensions": "4.1.0",
"FluentAssertions": "4.2.2",
"dotnet-test-xunit": "2.2.0-*"
},
"imports": [ "dotnet5.4", "dnxcore50", "portable-net451+win81" ]
"net45": {
"frameworkAssemblies": {}
}
},
"runtimes": {
"win": {}
}
}
}

0 comments on commit f32641a

Please sign in to comment.