Skip to content
This repository has been archived by the owner on Dec 13, 2018. It is now read-only.

Commit

Permalink
Updating json files to pin versions and build files to pin KoreBuild
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavkm committed May 17, 2016
1 parent 6315920 commit c668b94
Show file tree
Hide file tree
Showing 24 changed files with 122 additions and 122 deletions.
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ cd $PSScriptRoot
$repoFolder = $PSScriptRoot
$env:REPO_FOLDER = $repoFolder

$koreBuildZip="https://github.com/aspnet/KoreBuild/archive/release.zip"
$koreBuildZip="https://github.com/aspnet/KoreBuild/archive/1.0.0-rc2.zip"
if ($env:KOREBUILD_ZIP)
{
$koreBuildZip=$env:KOREBUILD_ZIP
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
repoFolder="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $repoFolder

koreBuildZip="https://github.com/aspnet/KoreBuild/archive/release.zip"
koreBuildZip="https://github.com/aspnet/KoreBuild/archive/1.0.0-rc2.zip"
if [ ! -z $KOREBUILD_ZIP ]; then
koreBuildZip=$KOREBUILD_ZIP
fi
Expand Down
14 changes: 7 additions & 7 deletions samples/CookieSample/project.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1-*",
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0-*",
"Microsoft.AspNetCore.DataProtection": "1.0.0-*",
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*"
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0-rc2-final",
"Microsoft.AspNetCore.DataProtection": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final"
},
"buildOptions": {
"emitEntryPoint": true
Expand All @@ -18,7 +18,7 @@
],
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-*",
"version": "1.0.0-rc2-3002702",
"type": "platform"
}
}
Expand Down
16 changes: 8 additions & 8 deletions samples/CookieSessionSample/project.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1-*",
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0-*",
"Microsoft.AspNetCore.DataProtection": "1.0.0-*",
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
"Microsoft.Extensions.Caching.Memory": "1.0.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*"
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0-rc2-final",
"Microsoft.AspNetCore.DataProtection": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final",
"Microsoft.Extensions.Caching.Memory": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final"
},
"buildOptions": {
"emitEntryPoint": true
Expand All @@ -19,7 +19,7 @@
],
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-*",
"version": "1.0.0-rc2-3002702",
"type": "platform"
}
}
Expand Down
16 changes: 8 additions & 8 deletions samples/JwtBearerSample/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"emitEntryPoint": true
},
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1-*",
"Microsoft.AspNetCore.Authentication.JwtBearer": "1.0.0-*",
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
"Microsoft.AspNetCore.StaticFiles": "1.0.0-*",
"Microsoft.Extensions.Configuration.UserSecrets": "1.0.0-*",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-*"
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
"Microsoft.AspNetCore.Authentication.JwtBearer": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final",
"Microsoft.AspNetCore.StaticFiles": "1.0.0-rc2-final",
"Microsoft.Extensions.Configuration.UserSecrets": "1.0.0-rc2-final",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-final"
},
"frameworks": {
"net451": {},
Expand All @@ -20,7 +20,7 @@
],
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-*",
"version": "1.0.0-rc2-3002702",
"type": "platform"
}
}
Expand Down
16 changes: 8 additions & 8 deletions samples/OpenIdConnect.AzureAdSample/project.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1-*",
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0-*",
"Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.0.0-*",
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
"Microsoft.Extensions.Configuration.UserSecrets": "1.0.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final",
"Microsoft.Extensions.Configuration.UserSecrets": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final",
"Microsoft.IdentityModel.Clients.ActiveDirectory": "2.22.302111727",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-*"
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-final"
},
"frameworks": {
"net451": {}
Expand Down
18 changes: 9 additions & 9 deletions samples/OpenIdConnectSample/project.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1-*",
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0-*",
"Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.0.0-*",
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
"Microsoft.Extensions.Configuration.UserSecrets": "1.0.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-*"
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final",
"Microsoft.Extensions.Configuration.UserSecrets": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-final"
},
"frameworks": {
"net451": {},
Expand All @@ -17,7 +17,7 @@
],
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-*",
"version": "1.0.0-rc2-3002702",
"type": "platform"
}
}
Expand Down
30 changes: 15 additions & 15 deletions samples/SocialSample/project.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1-*",
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0-*",
"Microsoft.AspNetCore.Authentication.Facebook": "1.0.0-*",
"Microsoft.AspNetCore.Authentication.Google": "1.0.0-*",
"Microsoft.AspNetCore.Authentication.MicrosoftAccount": "1.0.0-*",
"Microsoft.AspNetCore.Authentication.Twitter": "1.0.0-*",
"Microsoft.AspNetCore.DataProtection": "1.0.0-*",
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
"Microsoft.AspNetCore.Server.Kestrel.Https": "1.0.0-*",
"Microsoft.Extensions.Configuration.UserSecrets": "1.0.0-*",
"Microsoft.Extensions.FileProviders.Embedded": "1.0.0-*",
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-*"
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Authentication.Facebook": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Authentication.Google": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Authentication.MicrosoftAccount": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Authentication.Twitter": "1.0.0-rc2-final",
"Microsoft.AspNetCore.DataProtection": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Server.Kestrel.Https": "1.0.0-rc2-final",
"Microsoft.Extensions.Configuration.UserSecrets": "1.0.0-rc2-final",
"Microsoft.Extensions.FileProviders.Embedded": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-final"
},
"buildOptions": {
"emitEntryPoint": true
Expand All @@ -26,7 +26,7 @@
],
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0-*",
"version": "1.0.0-rc2-3002702",
"type": "platform"
}
}
Expand Down
8 changes: 4 additions & 4 deletions src/Microsoft.AspNetCore.Authentication.Cookies/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc2-final",
"description": "ASP.NET Core middleware that enables an application to use cookie based authentication.",
"packOptions": {
"repository": {
Expand All @@ -21,9 +21,9 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Authentication": "1.0.0-*",
"Microsoft.Extensions.Options": "1.0.0-*",
"Microsoft.Extensions.WebEncoders": "1.0.0-*"
"Microsoft.AspNetCore.Authentication": "1.0.0-rc2-final",
"Microsoft.Extensions.Options": "1.0.0-rc2-final",
"Microsoft.Extensions.WebEncoders": "1.0.0-rc2-final"
},
"frameworks": {
"net451": {},
Expand Down
4 changes: 2 additions & 2 deletions src/Microsoft.AspNetCore.Authentication.Facebook/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc2-final",
"description": "ASP.NET Core middleware that enables an application to support Facebook's OAuth 2.0 authentication workflow.",
"packOptions": {
"repository": {
Expand All @@ -21,7 +21,7 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Authentication.OAuth": "1.0.0-*"
"Microsoft.AspNetCore.Authentication.OAuth": "1.0.0-rc2-final"
},
"frameworks": {
"net451": {},
Expand Down
4 changes: 2 additions & 2 deletions src/Microsoft.AspNetCore.Authentication.Google/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc2-final",
"description": "ASP.NET Core contains middleware to support Google's OpenId and OAuth 2.0 authentication workflows.",
"packOptions": {
"repository": {
Expand All @@ -21,7 +21,7 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Authentication.OAuth": "1.0.0-*"
"Microsoft.AspNetCore.Authentication.OAuth": "1.0.0-rc2-final"
},
"frameworks": {
"net451": {},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc2-final",
"description": "ASP.NET Core middleware that enables an application to receive an OpenID Connect bearer token.",
"packOptions": {
"repository": {
Expand All @@ -21,8 +21,8 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Authentication": "1.0.0-*",
"Microsoft.IdentityModel.Protocols.OpenIdConnect": "2.0.0-*"
"Microsoft.AspNetCore.Authentication": "1.0.0-rc2-final",
"Microsoft.IdentityModel.Protocols.OpenIdConnect": "2.0.0-rc2-305061149"
},
"frameworks": {
"net451": {},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc2-final",
"description": "ASP.NET Core middleware that enables an application to support the Microsoft Account authentication workflow.",
"packOptions": {
"repository": {
Expand All @@ -21,7 +21,7 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Authentication.OAuth": "1.0.0-*"
"Microsoft.AspNetCore.Authentication.OAuth": "1.0.0-rc2-final"
},
"frameworks": {
"net451": {},
Expand Down
6 changes: 3 additions & 3 deletions src/Microsoft.AspNetCore.Authentication.OAuth/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc2-final",
"description": "ASP.NET Core middleware that enables an application to support any standard OAuth 2.0 authentication workflow.",
"packOptions": {
"repository": {
Expand All @@ -21,14 +21,14 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Authentication": "1.0.0-*",
"Microsoft.AspNetCore.Authentication": "1.0.0-rc2-final",
"Newtonsoft.Json": "8.0.3"
},
"frameworks": {
"net451": {},
"netstandard1.3": {
"dependencies": {
"System.Runtime.Serialization.Primitives": "4.1.1-*"
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24027"
},
"imports": [
"portable-net451+win8"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc2-final",
"description": "ASP.NET Core middleware that enables an application to support the OpenID Connect authentication workflow.",
"packOptions": {
"repository": {
Expand All @@ -21,8 +21,8 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Authentication": "1.0.0-*",
"Microsoft.IdentityModel.Protocols.OpenIdConnect": "2.0.0-*"
"Microsoft.AspNetCore.Authentication": "1.0.0-rc2-final",
"Microsoft.IdentityModel.Protocols.OpenIdConnect": "2.0.0-rc2-305061149"
},
"frameworks": {
"net451": {},
Expand Down
4 changes: 2 additions & 2 deletions src/Microsoft.AspNetCore.Authentication.Twitter/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc2-final",
"description": "ASP.NET Core middleware that enables an application to support Twitter's OAuth 2.0 authentication workflow.",
"packOptions": {
"repository": {
Expand All @@ -21,7 +21,7 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.Authentication": "1.0.0-*"
"Microsoft.AspNetCore.Authentication": "1.0.0-rc2-final"
},
"frameworks": {
"net451": {},
Expand Down
16 changes: 8 additions & 8 deletions src/Microsoft.AspNetCore.Authentication/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc2-final",
"description": "ASP.NET Core common types used by the various authentication middleware components.",
"packOptions": {
"repository": {
Expand All @@ -21,16 +21,16 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.AspNetCore.DataProtection": "1.0.0-*",
"Microsoft.AspNetCore.Http": "1.0.0-*",
"Microsoft.AspNetCore.Http.Extensions": "1.0.0-*",
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-*",
"Microsoft.AspNetCore.DataProtection": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Http": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Http.Extensions": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final",
"Microsoft.Extensions.SecurityHelper.Sources": {
"type": "build",
"version": "1.0.0-*"
},
"Microsoft.Extensions.Options": "1.0.0-*",
"Microsoft.Extensions.WebEncoders": "1.0.0-*"
"Microsoft.Extensions.Options": "1.0.0-rc2-final",
"Microsoft.Extensions.WebEncoders": "1.0.0-rc2-final"
},
"frameworks": {
"net451": {
Expand All @@ -40,7 +40,7 @@
},
"netstandard1.3": {
"dependencies": {
"System.Net.Http": "4.0.1-*"
"System.Net.Http": "4.0.1-rc2-24027"
},
"imports": [
"portable-net451"
Expand Down
Loading

0 comments on commit c668b94

Please sign in to comment.