diff --git a/NuGet.config b/NuGet.config
index feaadcda8..b1e768f89 100644
--- a/NuGet.config
+++ b/NuGet.config
@@ -4,5 +4,6 @@
+
-
+
\ No newline at end of file
diff --git a/build.ps1 b/build.ps1
index 24ca167cf..6245aee23 100644
--- a/build.ps1
+++ b/build.ps1
@@ -33,7 +33,7 @@ cd $PSScriptRoot
$repoFolder = $PSScriptRoot
$env:REPO_FOLDER = $repoFolder
-$koreBuildZip="https://github.com/aspnet/KoreBuild/archive/rel/1.1.0.zip"
+$koreBuildZip="https://github.com/aspnet/KoreBuild/archive/rel/1.1.2.zip"
if ($env:KOREBUILD_ZIP)
{
$koreBuildZip=$env:KOREBUILD_ZIP
@@ -64,4 +64,4 @@ if (!(Test-Path $buildFolder)) {
}
}
-&"$buildFile" $args
\ No newline at end of file
+&"$buildFile" $args
diff --git a/build.sh b/build.sh
index fea9ac64a..22df3c024 100755
--- a/build.sh
+++ b/build.sh
@@ -2,7 +2,7 @@
repoFolder="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $repoFolder
-koreBuildZip="https://github.com/aspnet/KoreBuild/archive/rel/1.1.0.zip"
+koreBuildZip="https://github.com/aspnet/KoreBuild/archive/rel/1.1.2.zip"
if [ ! -z $KOREBUILD_ZIP ]; then
koreBuildZip=$KOREBUILD_ZIP
fi
@@ -43,4 +43,4 @@ if test ! -d $buildFolder; then
fi
fi
-$buildFile -r $repoFolder "$@"
\ No newline at end of file
+$buildFile -r $repoFolder "$@"
diff --git a/samples/CookieSample/project.json b/samples/CookieSample/project.json
index 1cea2748b..2f84eae12 100644
--- a/samples/CookieSample/project.json
+++ b/samples/CookieSample/project.json
@@ -1,11 +1,11 @@
{
"dependencies": {
- "Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
- "Microsoft.AspNetCore.DataProtection": "1.1.0",
- "Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
- "Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
- "Microsoft.Extensions.Logging.Console": "1.1.0"
+ "Microsoft.AspNetCore.Authentication.Cookies": "1.1.1",
+ "Microsoft.AspNetCore.DataProtection": "1.1.1",
+ "Microsoft.AspNetCore.Server.IISIntegration": "1.1.1",
+ "Microsoft.AspNetCore.Server.Kestrel": "1.1.1",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.1",
+ "Microsoft.Extensions.Logging.Console": "1.1.1"
},
"buildOptions": {
"emitEntryPoint": true
@@ -15,7 +15,7 @@
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
- "version": "1.1.0",
+ "version": "1.1.1",
"type": "platform"
}
}
diff --git a/samples/CookieSessionSample/project.json b/samples/CookieSessionSample/project.json
index 2b2d55a89..88060a6ce 100644
--- a/samples/CookieSessionSample/project.json
+++ b/samples/CookieSessionSample/project.json
@@ -1,12 +1,12 @@
{
"dependencies": {
- "Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
- "Microsoft.AspNetCore.DataProtection": "1.1.0",
- "Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
- "Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
- "Microsoft.Extensions.Caching.Memory": "1.1.0",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
- "Microsoft.Extensions.Logging.Console": "1.1.0"
+ "Microsoft.AspNetCore.Authentication.Cookies": "1.1.1",
+ "Microsoft.AspNetCore.DataProtection": "1.1.1",
+ "Microsoft.AspNetCore.Server.IISIntegration": "1.1.1",
+ "Microsoft.AspNetCore.Server.Kestrel": "1.1.1",
+ "Microsoft.Extensions.Caching.Memory": "1.1.1",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.1",
+ "Microsoft.Extensions.Logging.Console": "1.1.1"
},
"buildOptions": {
"emitEntryPoint": true
@@ -16,7 +16,7 @@
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
- "version": "1.1.0",
+ "version": "1.1.1",
"type": "platform"
}
}
diff --git a/samples/JwtBearerSample/project.json b/samples/JwtBearerSample/project.json
index 909e87e24..05f6a3a8b 100644
--- a/samples/JwtBearerSample/project.json
+++ b/samples/JwtBearerSample/project.json
@@ -4,19 +4,19 @@
"emitEntryPoint": true
},
"dependencies": {
- "Microsoft.AspNetCore.Authentication.JwtBearer": "1.1.0",
- "Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
- "Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
- "Microsoft.AspNetCore.StaticFiles": "1.1.0",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
- "Microsoft.Extensions.Configuration.UserSecrets": "1.1.0"
+ "Microsoft.AspNetCore.Authentication.JwtBearer": "1.1.1",
+ "Microsoft.AspNetCore.Server.IISIntegration": "1.1.1",
+ "Microsoft.AspNetCore.Server.Kestrel": "1.1.1",
+ "Microsoft.AspNetCore.StaticFiles": "1.1.1",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.1",
+ "Microsoft.Extensions.Configuration.UserSecrets": "1.1.1"
},
"frameworks": {
"net451": {},
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
- "version": "1.1.0",
+ "version": "1.1.1",
"type": "platform"
}
}
diff --git a/samples/OpenIdConnect.AzureAdSample/project.json b/samples/OpenIdConnect.AzureAdSample/project.json
index a0795fefe..414ac0e56 100644
--- a/samples/OpenIdConnect.AzureAdSample/project.json
+++ b/samples/OpenIdConnect.AzureAdSample/project.json
@@ -1,12 +1,12 @@
{
"dependencies": {
- "Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
- "Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.1.0",
- "Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
- "Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
- "Microsoft.Extensions.Configuration.UserSecrets": "1.1.0",
- "Microsoft.Extensions.Logging.Console": "1.1.0",
+ "Microsoft.AspNetCore.Authentication.Cookies": "1.1.1",
+ "Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.1.1",
+ "Microsoft.AspNetCore.Server.IISIntegration": "1.1.1",
+ "Microsoft.AspNetCore.Server.Kestrel": "1.1.1",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.1",
+ "Microsoft.Extensions.Configuration.UserSecrets": "1.1.1",
+ "Microsoft.Extensions.Logging.Console": "1.1.1",
"Microsoft.IdentityModel.Clients.ActiveDirectory": "3.13.8"
},
"frameworks": {
@@ -14,7 +14,7 @@
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
- "version": "1.1.0",
+ "version": "1.1.1",
"type": "platform"
}
}
diff --git a/samples/OpenIdConnectSample/project.json b/samples/OpenIdConnectSample/project.json
index a84b7aec7..e20acf7ca 100644
--- a/samples/OpenIdConnectSample/project.json
+++ b/samples/OpenIdConnectSample/project.json
@@ -1,22 +1,22 @@
{
"dependencies": {
- "Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
- "Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.1.0",
- "Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
- "Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
- "Microsoft.AspNetCore.Server.Kestrel.Https": "1.1.0",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
- "Microsoft.Extensions.Configuration.UserSecrets": "1.1.0",
+ "Microsoft.AspNetCore.Authentication.Cookies": "1.1.1",
+ "Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.1.1",
+ "Microsoft.AspNetCore.Server.IISIntegration": "1.1.1",
+ "Microsoft.AspNetCore.Server.Kestrel": "1.1.1",
+ "Microsoft.AspNetCore.Server.Kestrel.Https": "1.1.1",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.1",
+ "Microsoft.Extensions.Configuration.UserSecrets": "1.1.1",
"Microsoft.Extensions.FileProviders.Embedded": "1.1.0",
- "Microsoft.Extensions.Logging.Console": "1.1.0",
- "Microsoft.Extensions.Logging.Debug": "1.1.0"
+ "Microsoft.Extensions.Logging.Console": "1.1.1",
+ "Microsoft.Extensions.Logging.Debug": "1.1.1"
},
"frameworks": {
"net451": {},
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
- "version": "1.1.0",
+ "version": "1.1.1",
"type": "platform"
}
}
diff --git a/samples/SocialSample/project.json b/samples/SocialSample/project.json
index 240001765..7b6ad5097 100644
--- a/samples/SocialSample/project.json
+++ b/samples/SocialSample/project.json
@@ -1,18 +1,18 @@
{
"dependencies": {
- "Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
- "Microsoft.AspNetCore.Authentication.Facebook": "1.1.0",
- "Microsoft.AspNetCore.Authentication.Google": "1.1.0",
- "Microsoft.AspNetCore.Authentication.MicrosoftAccount": "1.1.0",
- "Microsoft.AspNetCore.Authentication.Twitter": "1.1.0",
- "Microsoft.AspNetCore.DataProtection": "1.1.0",
- "Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
- "Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
- "Microsoft.AspNetCore.Server.Kestrel.Https": "1.1.0",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
- "Microsoft.Extensions.Configuration.UserSecrets": "1.1.0",
+ "Microsoft.AspNetCore.Authentication.Cookies": "1.1.1",
+ "Microsoft.AspNetCore.Authentication.Facebook": "1.1.1",
+ "Microsoft.AspNetCore.Authentication.Google": "1.1.1",
+ "Microsoft.AspNetCore.Authentication.MicrosoftAccount": "1.1.1",
+ "Microsoft.AspNetCore.Authentication.Twitter": "1.1.1",
+ "Microsoft.AspNetCore.DataProtection": "1.1.1",
+ "Microsoft.AspNetCore.Server.IISIntegration": "1.1.1",
+ "Microsoft.AspNetCore.Server.Kestrel": "1.1.1",
+ "Microsoft.AspNetCore.Server.Kestrel.Https": "1.1.1",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.1",
+ "Microsoft.Extensions.Configuration.UserSecrets": "1.1.1",
"Microsoft.Extensions.FileProviders.Embedded": "1.1.0",
- "Microsoft.Extensions.Logging.Console": "1.1.0"
+ "Microsoft.Extensions.Logging.Console": "1.1.1"
},
"buildOptions": {
"emitEntryPoint": true
@@ -22,7 +22,7 @@
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
- "version": "1.1.0",
+ "version": "1.1.1",
"type": "platform"
}
}
diff --git a/src/Microsoft.AspNetCore.Authentication.Cookies/project.json b/src/Microsoft.AspNetCore.Authentication.Cookies/project.json
index e717346a3..51932bf6d 100644
--- a/src/Microsoft.AspNetCore.Authentication.Cookies/project.json
+++ b/src/Microsoft.AspNetCore.Authentication.Cookies/project.json
@@ -1,5 +1,5 @@
{
- "version": "1.1.0",
+ "version": "1.1.1",
"description": "ASP.NET Core middleware that enables an application to use cookie based authentication.",
"packOptions": {
"repository": {
@@ -24,17 +24,17 @@
]
},
"dependencies": {
- "Microsoft.AspNetCore.Authentication": "1.1.0",
+ "Microsoft.AspNetCore.Authentication": "1.1.1",
"Microsoft.AspNetCore.ChunkingCookieManager.Sources": {
- "version": "1.1.0-rtm-22752",
+ "version": "1.1.1",
"type": "build"
},
- "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.1",
"Microsoft.Extensions.TaskCache.Sources": {
"version": "1.1.0-rtm-22752",
"type": "build"
},
- "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.1",
"NETStandard.Library": "1.6.1"
},
"frameworks": {
diff --git a/src/Microsoft.AspNetCore.Authentication.Facebook/project.json b/src/Microsoft.AspNetCore.Authentication.Facebook/project.json
index 095173757..90f304002 100644
--- a/src/Microsoft.AspNetCore.Authentication.Facebook/project.json
+++ b/src/Microsoft.AspNetCore.Authentication.Facebook/project.json
@@ -1,5 +1,5 @@
{
- "version": "1.1.0",
+ "version": "1.1.1",
"description": "ASP.NET Core middleware that enables an application to support Facebook's OAuth 2.0 authentication workflow.",
"packOptions": {
"repository": {
@@ -21,7 +21,7 @@
"xmlDoc": true
},
"dependencies": {
- "Microsoft.AspNetCore.Authentication.OAuth": "1.1.0",
+ "Microsoft.AspNetCore.Authentication.OAuth": "1.1.1",
"NETStandard.Library": "1.6.1"
},
"frameworks": {
diff --git a/src/Microsoft.AspNetCore.Authentication.Google/project.json b/src/Microsoft.AspNetCore.Authentication.Google/project.json
index a35fa732c..76356531c 100644
--- a/src/Microsoft.AspNetCore.Authentication.Google/project.json
+++ b/src/Microsoft.AspNetCore.Authentication.Google/project.json
@@ -1,5 +1,5 @@
{
- "version": "1.1.0",
+ "version": "1.1.1",
"description": "ASP.NET Core contains middleware to support Google's OpenId and OAuth 2.0 authentication workflows.",
"packOptions": {
"repository": {
@@ -21,7 +21,7 @@
"xmlDoc": true
},
"dependencies": {
- "Microsoft.AspNetCore.Authentication.OAuth": "1.1.0",
+ "Microsoft.AspNetCore.Authentication.OAuth": "1.1.1",
"NETStandard.Library": "1.6.1"
},
"frameworks": {
diff --git a/src/Microsoft.AspNetCore.Authentication.JwtBearer/project.json b/src/Microsoft.AspNetCore.Authentication.JwtBearer/project.json
index 91d28542a..7b40cca76 100644
--- a/src/Microsoft.AspNetCore.Authentication.JwtBearer/project.json
+++ b/src/Microsoft.AspNetCore.Authentication.JwtBearer/project.json
@@ -1,5 +1,5 @@
{
- "version": "1.1.0",
+ "version": "1.1.1",
"description": "ASP.NET Core middleware that enables an application to receive an OpenID Connect bearer token.",
"packOptions": {
"repository": {
@@ -21,7 +21,7 @@
"xmlDoc": true
},
"dependencies": {
- "Microsoft.AspNetCore.Authentication": "1.1.0",
+ "Microsoft.AspNetCore.Authentication": "1.1.1",
"Microsoft.Extensions.TaskCache.Sources": {
"version": "1.1.0-rtm-22752",
"type": "build"
diff --git a/src/Microsoft.AspNetCore.Authentication.MicrosoftAccount/project.json b/src/Microsoft.AspNetCore.Authentication.MicrosoftAccount/project.json
index 19e403676..dc3d41398 100644
--- a/src/Microsoft.AspNetCore.Authentication.MicrosoftAccount/project.json
+++ b/src/Microsoft.AspNetCore.Authentication.MicrosoftAccount/project.json
@@ -1,5 +1,5 @@
{
- "version": "1.1.0",
+ "version": "1.1.1",
"description": "ASP.NET Core middleware that enables an application to support the Microsoft Account authentication workflow.",
"packOptions": {
"repository": {
@@ -21,7 +21,7 @@
"xmlDoc": true
},
"dependencies": {
- "Microsoft.AspNetCore.Authentication.OAuth": "1.1.0",
+ "Microsoft.AspNetCore.Authentication.OAuth": "1.1.1",
"NETStandard.Library": "1.6.1"
},
"frameworks": {
diff --git a/src/Microsoft.AspNetCore.Authentication.OAuth/project.json b/src/Microsoft.AspNetCore.Authentication.OAuth/project.json
index f5fbf8de4..cbf8b1c58 100644
--- a/src/Microsoft.AspNetCore.Authentication.OAuth/project.json
+++ b/src/Microsoft.AspNetCore.Authentication.OAuth/project.json
@@ -1,5 +1,5 @@
{
- "version": "1.1.0",
+ "version": "1.1.1",
"description": "ASP.NET Core middleware that enables an application to support any standard OAuth 2.0 authentication workflow.",
"packOptions": {
"repository": {
@@ -21,7 +21,7 @@
"xmlDoc": true
},
"dependencies": {
- "Microsoft.AspNetCore.Authentication": "1.1.0",
+ "Microsoft.AspNetCore.Authentication": "1.1.1",
"Microsoft.Extensions.TaskCache.Sources": {
"version": "1.1.0-rtm-22752",
"type": "build"
diff --git a/src/Microsoft.AspNetCore.Authentication.OpenIdConnect/project.json b/src/Microsoft.AspNetCore.Authentication.OpenIdConnect/project.json
index 557939271..56cbbbee9 100644
--- a/src/Microsoft.AspNetCore.Authentication.OpenIdConnect/project.json
+++ b/src/Microsoft.AspNetCore.Authentication.OpenIdConnect/project.json
@@ -1,5 +1,5 @@
{
- "version": "1.1.0",
+ "version": "1.1.1",
"description": "ASP.NET Core middleware that enables an application to support the OpenID Connect authentication workflow.",
"packOptions": {
"repository": {
@@ -21,7 +21,7 @@
"xmlDoc": true
},
"dependencies": {
- "Microsoft.AspNetCore.Authentication": "1.1.0",
+ "Microsoft.AspNetCore.Authentication": "1.1.1",
"Microsoft.Extensions.TaskCache.Sources": {
"version": "1.1.0-rtm-22752",
"type": "build"
diff --git a/src/Microsoft.AspNetCore.Authentication.Twitter/project.json b/src/Microsoft.AspNetCore.Authentication.Twitter/project.json
index ee7ae4409..b36fa306e 100644
--- a/src/Microsoft.AspNetCore.Authentication.Twitter/project.json
+++ b/src/Microsoft.AspNetCore.Authentication.Twitter/project.json
@@ -1,5 +1,5 @@
{
- "version": "1.1.0",
+ "version": "1.1.1",
"description": "ASP.NET Core middleware that enables an application to support Twitter's OAuth 1.0 authentication workflow.",
"packOptions": {
"repository": {
@@ -21,7 +21,7 @@
"xmlDoc": true
},
"dependencies": {
- "Microsoft.AspNetCore.Authentication": "1.1.0",
+ "Microsoft.AspNetCore.Authentication": "1.1.1",
"Microsoft.Extensions.TaskCache.Sources": {
"version": "1.1.0-rtm-22752",
"type": "build"
diff --git a/src/Microsoft.AspNetCore.Authentication/project.json b/src/Microsoft.AspNetCore.Authentication/project.json
index 915c2ff81..b0be68588 100644
--- a/src/Microsoft.AspNetCore.Authentication/project.json
+++ b/src/Microsoft.AspNetCore.Authentication/project.json
@@ -1,5 +1,5 @@
{
- "version": "1.1.0",
+ "version": "1.1.1",
"description": "ASP.NET Core common types used by the various authentication middleware components.",
"packOptions": {
"repository": {
@@ -21,11 +21,11 @@
"xmlDoc": true
},
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.1.0",
- "Microsoft.AspNetCore.Http": "1.1.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
- "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.AspNetCore.DataProtection": "1.1.1",
+ "Microsoft.AspNetCore.Http": "1.1.1",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.1",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.1",
+ "Microsoft.Extensions.Options": "1.1.1",
"Microsoft.Extensions.SecurityHelper.Sources": {
"type": "build",
"version": "1.1.0-rtm-22752"
@@ -34,11 +34,11 @@
"version": "1.1.0-rtm-22752",
"type": "build"
},
- "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.1",
"NETStandard.Library": "1.6.1"
},
"frameworks": {
- "net451": { },
+ "net451": {},
"netstandard1.3": {}
}
}
\ No newline at end of file
diff --git a/src/Microsoft.AspNetCore.Authorization/project.json b/src/Microsoft.AspNetCore.Authorization/project.json
index 32f67b5cc..2aa102e83 100644
--- a/src/Microsoft.AspNetCore.Authorization/project.json
+++ b/src/Microsoft.AspNetCore.Authorization/project.json
@@ -1,5 +1,5 @@
{
- "version": "1.1.0",
+ "version": "1.1.1",
"description": "ASP.NET Core authorization classes.\r\nCommonly used types:\r\nMicrosoft.AspNetCore.Authorization.AllowAnonymousAttribute\r\nMicrosoft.AspNetCore.Authorization.AuthorizeAttribute",
"packOptions": {
"repository": {
@@ -20,8 +20,8 @@
"xmlDoc": true
},
"dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
- "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.1",
+ "Microsoft.Extensions.Options": "1.1.1",
"Microsoft.Extensions.TaskCache.Sources": {
"version": "1.1.0-rtm-22752",
"type": "build"
@@ -29,7 +29,7 @@
"NETStandard.Library": "1.6.1"
},
"frameworks": {
- "net451": { },
+ "net451": {},
"netstandard1.3": {
"dependencies": {
"System.Security.Claims": "4.3.0"
diff --git a/src/Microsoft.AspNetCore.ChunkingCookieManager.Sources/project.json b/src/Microsoft.AspNetCore.ChunkingCookieManager.Sources/project.json
index 76b478712..91ad10210 100644
--- a/src/Microsoft.AspNetCore.ChunkingCookieManager.Sources/project.json
+++ b/src/Microsoft.AspNetCore.ChunkingCookieManager.Sources/project.json
@@ -1,9 +1,9 @@
{
- "version": "1.1.0-rtm-22752",
+ "version": "1.1.1",
"shared": "*.cs",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
- "Microsoft.Net.Http.Headers": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.1",
+ "Microsoft.Net.Http.Headers": "1.1.1",
"NETStandard.Library": "1.6.1"
},
"frameworks": {
diff --git a/src/Microsoft.AspNetCore.CookiePolicy/project.json b/src/Microsoft.AspNetCore.CookiePolicy/project.json
index c116ac0a8..27e896e43 100644
--- a/src/Microsoft.AspNetCore.CookiePolicy/project.json
+++ b/src/Microsoft.AspNetCore.CookiePolicy/project.json
@@ -1,5 +1,5 @@
{
- "version": "1.1.0",
+ "version": "1.1.1",
"description": "ASP.NET Core cookie policy classes to control the behavior of cookies.",
"packOptions": {
"repository": {
@@ -19,8 +19,8 @@
"xmlDoc": true
},
"dependencies": {
- "Microsoft.AspNetCore.Http": "1.1.0",
- "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.1",
+ "Microsoft.Extensions.Options": "1.1.1",
"NETStandard.Library": "1.6.1"
},
"frameworks": {
diff --git a/src/Microsoft.Owin.Security.Interop/project.json b/src/Microsoft.Owin.Security.Interop/project.json
index e99128b5a..e47aef8f6 100644
--- a/src/Microsoft.Owin.Security.Interop/project.json
+++ b/src/Microsoft.Owin.Security.Interop/project.json
@@ -1,5 +1,5 @@
{
- "version": "1.1.0",
+ "version": "1.1.1",
"buildOptions": {
"warningsAsErrors": true,
"keyFile": "../../tools/Key.snk",
@@ -18,7 +18,7 @@
]
},
"dependencies": {
- "Microsoft.AspNetCore.DataProtection.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.DataProtection.Extensions": "1.1.1",
"Microsoft.Owin.Security": "3.0.1",
"NETStandard.Library": "1.6.1"
},
diff --git a/test/Microsoft.AspNetCore.Authentication.Test/project.json b/test/Microsoft.AspNetCore.Authentication.Test/project.json
index 8087ca50b..c2ee097d6 100644
--- a/test/Microsoft.AspNetCore.Authentication.Test/project.json
+++ b/test/Microsoft.AspNetCore.Authentication.Test/project.json
@@ -4,14 +4,14 @@
},
"dependencies": {
"dotnet-test-xunit": "2.2.0-*",
- "Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
- "Microsoft.AspNetCore.Authentication.Facebook": "1.1.0",
- "Microsoft.AspNetCore.Authentication.Google": "1.1.0",
- "Microsoft.AspNetCore.Authentication.JwtBearer": "1.1.0",
- "Microsoft.AspNetCore.Authentication.MicrosoftAccount": "1.1.0",
- "Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.1.0",
- "Microsoft.AspNetCore.Authentication.Twitter": "1.1.0",
- "Microsoft.AspNetCore.TestHost": "1.1.0",
+ "Microsoft.AspNetCore.Authentication.Cookies": "1.1.1",
+ "Microsoft.AspNetCore.Authentication.Facebook": "1.1.1",
+ "Microsoft.AspNetCore.Authentication.Google": "1.1.1",
+ "Microsoft.AspNetCore.Authentication.JwtBearer": "1.1.1",
+ "Microsoft.AspNetCore.Authentication.MicrosoftAccount": "1.1.1",
+ "Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.1.1",
+ "Microsoft.AspNetCore.Authentication.Twitter": "1.1.1",
+ "Microsoft.AspNetCore.TestHost": "1.1.1",
"Microsoft.AspNetCore.Testing": "1.1.0-rtm-22752",
"xunit": "2.2.0-*"
},
@@ -19,7 +19,7 @@
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
- "version": "1.1.0",
+ "version": "1.1.1",
"type": "platform"
}
}
diff --git a/test/Microsoft.AspNetCore.Authorization.Test/project.json b/test/Microsoft.AspNetCore.Authorization.Test/project.json
index 161482726..edb06cacd 100644
--- a/test/Microsoft.AspNetCore.Authorization.Test/project.json
+++ b/test/Microsoft.AspNetCore.Authorization.Test/project.json
@@ -4,17 +4,17 @@
},
"dependencies": {
"dotnet-test-xunit": "2.2.0-*",
- "Microsoft.AspNetCore.Authorization": "1.1.0",
+ "Microsoft.AspNetCore.Authorization": "1.1.1",
"Microsoft.AspNetCore.Testing": "1.1.0-rtm-22752",
"Microsoft.Extensions.DependencyInjection": "1.1.0",
- "Microsoft.Extensions.Logging": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.1",
"xunit": "2.2.0-*"
},
"frameworks": {
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
- "version": "1.1.0",
+ "version": "1.1.1",
"type": "platform"
}
}
diff --git a/test/Microsoft.AspNetCore.ChunkingCookieManager.Sources.Test/project.json b/test/Microsoft.AspNetCore.ChunkingCookieManager.Sources.Test/project.json
index ae4f829ea..0cb959687 100644
--- a/test/Microsoft.AspNetCore.ChunkingCookieManager.Sources.Test/project.json
+++ b/test/Microsoft.AspNetCore.ChunkingCookieManager.Sources.Test/project.json
@@ -5,17 +5,17 @@
"dependencies": {
"dotnet-test-xunit": "2.2.0-*",
"Microsoft.AspNetCore.ChunkingCookieManager.Sources": {
- "version": "1.1.0-rtm-22752",
+ "version": "1.1.1",
"type": "build"
},
- "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.1",
"xunit": "2.2.0-*"
},
"frameworks": {
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
- "version": "1.1.0",
+ "version": "1.1.1",
"type": "platform"
}
}
diff --git a/test/Microsoft.AspNetCore.CookiePolicy.Test/project.json b/test/Microsoft.AspNetCore.CookiePolicy.Test/project.json
index ada7e7c1e..f9f6dd2df 100644
--- a/test/Microsoft.AspNetCore.CookiePolicy.Test/project.json
+++ b/test/Microsoft.AspNetCore.CookiePolicy.Test/project.json
@@ -4,9 +4,9 @@
},
"dependencies": {
"dotnet-test-xunit": "2.2.0-*",
- "Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
- "Microsoft.AspNetCore.CookiePolicy": "1.1.0",
- "Microsoft.AspNetCore.TestHost": "1.1.0",
+ "Microsoft.AspNetCore.Authentication.Cookies": "1.1.1",
+ "Microsoft.AspNetCore.CookiePolicy": "1.1.1",
+ "Microsoft.AspNetCore.TestHost": "1.1.1",
"Microsoft.Extensions.DependencyInjection": "1.1.0",
"xunit": "2.2.0-*"
},
@@ -14,7 +14,7 @@
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
- "version": "1.1.0",
+ "version": "1.1.1",
"type": "platform"
}
}
diff --git a/test/Microsoft.Owin.Security.Interop.Test/project.json b/test/Microsoft.Owin.Security.Interop.Test/project.json
index aa0e97278..9e67dfc42 100644
--- a/test/Microsoft.Owin.Security.Interop.Test/project.json
+++ b/test/Microsoft.Owin.Security.Interop.Test/project.json
@@ -4,10 +4,10 @@
},
"dependencies": {
"dotnet-test-xunit": "2.2.0-*",
- "Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
- "Microsoft.AspNetCore.TestHost": "1.1.0",
+ "Microsoft.AspNetCore.Authentication.Cookies": "1.1.1",
+ "Microsoft.AspNetCore.TestHost": "1.1.1",
"Microsoft.Owin.Security.Cookies": "3.0.1",
- "Microsoft.Owin.Security.Interop": "1.1.0",
+ "Microsoft.Owin.Security.Interop": "1.1.1",
"Microsoft.Owin.Testing": "3.0.1",
"NETStandard.Library": "1.6.1",
"xunit": "2.2.0-*"