diff --git a/sample/AzureAppServicesSample/project.json b/sample/AzureAppServicesSample/project.json index 884e017b69..ab70d9bcc5 100644 --- a/sample/AzureAppServicesSample/project.json +++ b/sample/AzureAppServicesSample/project.json @@ -1,9 +1,9 @@ { - "version": "1.1.0-*", + "version": "1.2.0-*", "dependencies": { "Microsoft.AspNetCore.AzureAppServicesIntegration": "1.0.0-*", - "Microsoft.AspNetCore.Server.Kestrel": "1.1.0-*", - "Microsoft.Extensions.Logging.Console": "1.1.0-*" + "Microsoft.AspNetCore.Server.Kestrel": "1.2.0-*", + "Microsoft.Extensions.Logging.Console": "1.2.0-*" }, "buildOptions": { "emitEntryPoint": true @@ -17,7 +17,10 @@ "type": "platform" } }, - "imports": [ "portable-net40+sl5+win8+wp8+wpa81", "portable-net45+win8+wp8+wpa81" ] + "imports": [ + "portable-net40+sl5+win8+wp8+wpa81", + "portable-net45+win8+wp8+wpa81" + ] } }, "publishOptions": { diff --git a/src/Microsoft.AspNetCore.AzureAppServicesIntegration/project.json b/src/Microsoft.AspNetCore.AzureAppServicesIntegration/project.json index 6b36c59eac..5cb3c6db77 100644 --- a/src/Microsoft.AspNetCore.AzureAppServicesIntegration/project.json +++ b/src/Microsoft.AspNetCore.AzureAppServicesIntegration/project.json @@ -1,5 +1,5 @@ { - "version": "1.0.0-*", + "version": "1.2.0-*", "description": "ASP.NET Core integration with Azure AppServices.", "packOptions": { "repository": { @@ -13,16 +13,19 @@ ] }, "dependencies": { - "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0-*", - "Microsoft.AspNetCore.Server.IISIntegration": "1.1.0-*", + "Microsoft.AspNetCore.Hosting.Abstractions": "1.2.0-*", + "Microsoft.AspNetCore.Server.IISIntegration": "1.2.0-*", "Microsoft.Extensions.Logging.AzureAppServices": "1.0.0-*" }, "frameworks": { "net451": { - "frameworkAssemblies": { } + "frameworkAssemblies": {} }, "netstandard1.3": { - "imports": [ "portable-net40+sl5+win8+wp8+wpa81", "portable-net45+win8+wp8+wpa81" ] + "imports": [ + "portable-net40+sl5+win8+wp8+wpa81", + "portable-net45+win8+wp8+wpa81" + ] } }, "buildOptions": { diff --git a/test/Microsoft.AspNetCore.AzureAppServicesIntegration.Tests/project.json b/test/Microsoft.AspNetCore.AzureAppServicesIntegration.Tests/project.json index 222cd4d2c3..bb8b887ec3 100644 --- a/test/Microsoft.AspNetCore.AzureAppServicesIntegration.Tests/project.json +++ b/test/Microsoft.AspNetCore.AzureAppServicesIntegration.Tests/project.json @@ -1,12 +1,12 @@ { - "version": "1.1.0-*", + "version": "1.2.0-*", "buildOptions": { "keyFile": "../../tools/Key.snk" }, "dependencies": { "dotnet-test-xunit": "2.2.0-*", "Microsoft.AspNetCore.AzureAppServicesIntegration": "1.0.0-*", - "Microsoft.AspNetCore.TestHost": "1.1.0-*", + "Microsoft.AspNetCore.TestHost": "1.2.0-*", "xunit": "2.2.0-*", "Moq": "4.6.36-*" }, @@ -18,7 +18,10 @@ "type": "platform" } }, - "imports": [ "portable-net40+sl5+win8+wp8+wpa81", "portable-net45+win8+wp8+wpa81" ] + "imports": [ + "portable-net40+sl5+win8+wp8+wpa81", + "portable-net45+win8+wp8+wpa81" + ] }, "net451": {} },