Downgrade Newtonsoft.Json

This commit is contained in:
Stef Heyenrath
2017-01-24 22:19:31 +01:00
parent 3f84ba8b20
commit 4809fed513
2 changed files with 5 additions and 5 deletions

View File

@@ -247,7 +247,7 @@ namespace WireMock.Server
{
ctx.Response.StatusCode = 404;
byte[] content = Encoding.UTF8.GetBytes("<html><body>Mock Server: page not found</body></html>");
byte[] content = Encoding.UTF8.GetBytes("No mapping found");
ctx.Response.OutputStream.Write(content, 0, content.Length);
}
else

View File

@@ -1,12 +1,12 @@
{
"version": "1.0.0.0",
"title": "WireMock.Net",
"description": "Lightweigth Http Mocking Server for .Net, inspired by WireMock from the Java landscape.",
"description": "Lightweight Http Mocking Server for .Net, inspired by WireMock from the Java landscape.",
"authors": [ "Alexandre Victoor", "Stef Heyenrath" ],
"packOptions": {
"summary": "Lightweigth Http Mocking Server for .Net, inspired by WireMock from the Java landscape.",
"tags": [ "tdd", "mock", "http", "wiremock", "test" ],
"summary": "Lightweight Http Mocking Server for .Net, inspired by WireMock from the Java landscape.",
"tags": [ "tdd", "mock", "http", "wiremock", "test", "server", "unittest" ],
"owners": [ "Stef Heyenrath" ],
"repository": {
"type": "git",
@@ -28,7 +28,7 @@
"type": "build"
},
"Handlebars.Net": "1.8.0",
"Newtonsoft.Json": "9.0.1",
"Newtonsoft.Json": "6.0.8",
"XPath2": "1.0.3.1"
},