appveyor : nuget restore

This commit is contained in:
Stef Heyenrath
2017-01-18 21:06:04 +01:00
parent 8f4216eb3f
commit 7884ee1eda
2 changed files with 3 additions and 2 deletions

View File

@@ -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. A fluent API allows to specify the behavior of the server and hence easily stub and mock webservices and REST ressources.
```csharp ```csharp
server = FluentMockServer.Start(); var server = FluentMockServer.Start();
server server
.Given( .Given(
Requests.WithUrl("/*") Requests.WithUrl("/*")

View File

@@ -19,7 +19,8 @@ environment:
PATH: $(PATH);$(PROGRAMFILES)\dotnet\ PATH: $(PATH);$(PROGRAMFILES)\dotnet\
before_build: 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: build_script:
- appveyor-retry dotnet restore .\src\WireMock -v Minimal - appveyor-retry dotnet restore .\src\WireMock -v Minimal