From 1d2c7fcf79c19b4262098d444dd3fff9a8ceb01e Mon Sep 17 00:00:00 2001 From: Stef Heyenrath Date: Wed, 18 Jan 2017 21:24:00 +0100 Subject: [PATCH] appveyor : dotnet pack -c %CONFIGURATION% --- appveyor.yml | 2 +- src/WireMock/project.json | 10 +++++----- src/_build nuget.cmd | 3 +++ 3 files changed, 9 insertions(+), 6 deletions(-) create mode 100644 src/_build nuget.cmd diff --git a/appveyor.yml b/appveyor.yml index 7d1f8b1d..9e01ab5d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -29,7 +29,7 @@ build_script: - cmd: msbuild .\examples\WireMock.Net.ConsoleApplication\WireMock.Net.ConsoleApplication.csproj /p:Configuration=%CONFIGURATION% /p:Platform=AnyCPU - cmd: msbuild .\test\WireMock.Net.Tests\WireMock.Net.Tests.csproj /p:Configuration=%CONFIGURATION% /p:Platform=AnyCPU -- dotnet pack -c Release --no-build --version-suffix %LABEL% -o .\artifacts .\src\WireMock\project.json +- dotnet pack -c %CONFIGURATION% --no-build --version-suffix %LABEL% -o .\artifacts .\src\WireMock\project.json artifacts: - path: artifacts\**\*.* diff --git a/src/WireMock/project.json b/src/WireMock/project.json index 834f983c..7b60f667 100644 --- a/src/WireMock/project.json +++ b/src/WireMock/project.json @@ -1,11 +1,11 @@ { - "version": "1.0.0.9", + "version": "1.0.0.0", "title": "WireMock.Net", - "description": "xxxx", + "description": "Lightweigth Http Mocking Server for .Net, inspired by WireMock from the Java landscape.", "authors": [ "Alexandre Victoor", "Stef Heyenrath" ], "packOptions": { - "summary": "This is a .NET Core port of the the Microsoft assembly for the .Net 4.0 Dynamic language functionality.", + "summary": "Lightweigth Http Mocking Server for .Net, inspired by WireMock from the Java landscape.", "tags": [ "system", "linq", "dynamic", "core" ], "owners": [ "Stef Heyenrath" ], "repository": { @@ -13,8 +13,8 @@ "url": "https://github.com/StefH/WireMock.Net" }, "projectUrl": "https://github.com/StefH/WireMock.Net", - "licenseUrl": "https://github.com/StefH/WireMock.Net/blob/master/licence.txt", - "releaseNotes": "" + "licenseUrl": "https://raw.githubusercontent.com/StefH/WireMock.Net/master/LICENSE", + "releaseNotes": "First version" }, "buildOptions": { diff --git a/src/_build nuget.cmd b/src/_build nuget.cmd new file mode 100644 index 00000000..e8abd854 --- /dev/null +++ b/src/_build nuget.cmd @@ -0,0 +1,3 @@ +dotnet restore +dotnet pack -c Release WireMock\project.json +pause \ No newline at end of file