From 7884ee1edaa35cca49c2cf8fed2a6d612943dcfc Mon Sep 17 00:00:00 2001 From: Stef Heyenrath Date: Wed, 18 Jan 2017 21:06:04 +0100 Subject: [PATCH] appveyor : nuget restore --- README.md | 2 +- appveyor.yml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 31a921b7..1223cf91 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ WireMock allows to get an HTTP server in a glance. A fluent API allows to specify the behavior of the server and hence easily stub and mock webservices and REST ressources. ```csharp -server = FluentMockServer.Start(); +var server = FluentMockServer.Start(); server .Given( Requests.WithUrl("/*") diff --git a/appveyor.yml b/appveyor.yml index d93a651e..ac40eef5 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -19,7 +19,8 @@ environment: PATH: $(PATH);$(PROGRAMFILES)\dotnet\ before_build: -- nuget restore +- nuget restore .\examples\WireMock.Net.ConsoleApplication\WireMock.Net.ConsoleApplication.csproj +- nuget restore .\test\WireMock.Net.Tests\WireMock.Net.Tests.csproj build_script: - appveyor-retry dotnet restore .\src\WireMock -v Minimal