Skip to content

Commit 9f78de8

Browse files
committed
appveyor build updates
1 parent 8b7c70d commit 9f78de8

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

CommandLine.base.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<version>$version$</version>
66
<title>Command Line Parser Library</title>
77
<authors>gsscoder nemec ericnewton76</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>
8+
<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>
99
<releaseNotes />
1010
<copyright>Copyright (c) 2005 - 2018 Giacomo Stelluti Scala &amp; Contributors</copyright>
1111
<licenseUrl>https://github.com/commandlineparser/commandline/blob/master/License.md</licenseUrl>

Commandline-fsharp.nuspec renamed to Commandline.FSharp.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
4-
<id>CommandLineParser</id>
4+
<id>CommandLineParser.FSharp</id>
55
<version>$version$</version>
66
<title>Command Line Parser Library</title>
77
<authors>gsscoder nemec ericnewton76</authors>

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ environment:
3636
- BUILD_TARGET: base
3737
NUSPEC_FILE: CommandLine
3838
- BUILD_TARGET: fsharp
39-
NUSPEC_FILE: CommandLine.fsharp
39+
NUSPEC_FILE: CommandLine.FSharp
4040

4141
build_script:
4242
- cmd: build.cmd %BUILD_TARGET%

build-nuget-pack.cmd

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,18 @@
22
setlocal
33

44
if "%1" == "" goto :USAGE
5+
if "%2" == "" goto :USAGE
56

67
pushd Release\%1
78

89
copy ..\..\README.md
9-
copy ..\..\CommandLine.%1.nuspec .
10-
nuget pack "CommandLine.%1.nuspec" -properties Version=%APPVEYOR_BUILD_VERSION%
10+
copy ..\..\%2.nuspec .
11+
nuget pack "%2.nuspec" -properties Version=%APPVEYOR_BUILD_VERSION%
1112
if errorlevel 1 popd&exit 1 /b
1213
goto :END
1314

1415
:USAGE
16+
echo build-nuget-pack <build_target> <nuspec_file_name>
1517

1618
:END
1719
popd

0 commit comments

Comments
 (0)