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

Commit c8e53f7

Browse files
committed
Updating json files to pin versions and build files to pin KoreBuild
1 parent 83b5f8c commit c8e53f7

File tree

24 files changed

+134
-140
lines changed

24 files changed

+134
-140
lines changed

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ cd $PSScriptRoot
3333
$repoFolder = $PSScriptRoot
3434
$env:REPO_FOLDER = $repoFolder
3535

36-
$koreBuildZip="https://github.com/aspnet/KoreBuild/archive/release.zip"
36+
$koreBuildZip="https://github.com/aspnet/KoreBuild/archive/1.0.0.zip"
3737
if ($env:KOREBUILD_ZIP)
3838
{
3939
$koreBuildZip=$env:KOREBUILD_ZIP

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
repoFolder="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
33
cd $repoFolder
44

5-
koreBuildZip="https://github.com/aspnet/KoreBuild/archive/release.zip"
5+
koreBuildZip="https://github.com/aspnet/KoreBuild/archive/1.0.0.zip"
66
if [ ! -z $KOREBUILD_ZIP ]; then
77
koreBuildZip=$KOREBUILD_ZIP
88
fi

samples/CookieSample/project.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"dependencies": {
3-
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0-*",
4-
"Microsoft.AspNetCore.DataProtection": "1.0.0-*",
5-
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*",
6-
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
7-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-*",
8-
"Microsoft.Extensions.Logging.Console": "1.0.0-*"
3+
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
4+
"Microsoft.AspNetCore.DataProtection": "1.0.0",
5+
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
6+
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
7+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
8+
"Microsoft.Extensions.Logging.Console": "1.0.0"
99
},
1010
"buildOptions": {
1111
"emitEntryPoint": true
@@ -15,7 +15,7 @@
1515
"netcoreapp1.0": {
1616
"dependencies": {
1717
"Microsoft.NETCore.App": {
18-
"version": "1.0.0-*",
18+
"version": "1.0.0",
1919
"type": "platform"
2020
}
2121
}

samples/CookieSessionSample/project.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"dependencies": {
3-
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0-*",
4-
"Microsoft.AspNetCore.DataProtection": "1.0.0-*",
5-
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*",
6-
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
7-
"Microsoft.Extensions.Caching.Memory": "1.0.0-*",
8-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-*",
9-
"Microsoft.Extensions.Logging.Console": "1.0.0-*"
3+
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
4+
"Microsoft.AspNetCore.DataProtection": "1.0.0",
5+
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
6+
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
7+
"Microsoft.Extensions.Caching.Memory": "1.0.0",
8+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
9+
"Microsoft.Extensions.Logging.Console": "1.0.0"
1010
},
1111
"buildOptions": {
1212
"emitEntryPoint": true
@@ -16,7 +16,7 @@
1616
"netcoreapp1.0": {
1717
"dependencies": {
1818
"Microsoft.NETCore.App": {
19-
"version": "1.0.0-*",
19+
"version": "1.0.0",
2020
"type": "platform"
2121
}
2222
}

samples/JwtBearerSample/project.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44
"emitEntryPoint": true
55
},
66
"dependencies": {
7-
"Microsoft.AspNetCore.Authentication.JwtBearer": "1.0.0-*",
8-
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*",
9-
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
10-
"Microsoft.AspNetCore.StaticFiles": "1.0.0-*",
11-
"Microsoft.Extensions.Configuration.UserSecrets": "1.0.0-*",
12-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-*"
7+
"Microsoft.AspNetCore.Authentication.JwtBearer": "1.0.0",
8+
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
9+
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
10+
"Microsoft.AspNetCore.StaticFiles": "1.0.0",
11+
"Microsoft.Extensions.Configuration.UserSecrets": "1.0.0",
12+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0"
1313
},
1414
"frameworks": {
1515
"net451": {},
1616
"netcoreapp1.0": {
1717
"dependencies": {
1818
"Microsoft.NETCore.App": {
19-
"version": "1.0.0-*",
19+
"version": "1.0.0",
2020
"type": "platform"
2121
}
2222
}

samples/OpenIdConnect.AzureAdSample/project.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
22
"dependencies": {
3-
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0-*",
4-
"Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.0.0-*",
5-
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*",
6-
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
7-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-*",
8-
"Microsoft.Extensions.Configuration.UserSecrets": "1.0.0-*",
9-
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
3+
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
4+
"Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.0.0",
5+
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
6+
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
7+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
8+
"Microsoft.Extensions.Configuration.UserSecrets": "1.0.0",
9+
"Microsoft.Extensions.Logging.Console": "1.0.0",
1010
"Microsoft.IdentityModel.Clients.ActiveDirectory": "3.11.305310302-alpha"
1111
},
1212
"frameworks": {
13-
"net451": { },
13+
"net451": {},
1414
"netcoreapp1.0": {
1515
"dependencies": {
1616
"Microsoft.NETCore.App": {
17-
"version": "1.0.0-*",
17+
"version": "1.0.0",
1818
"type": "platform"
1919
}
2020
}

samples/OpenIdConnectSample/project.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
{
22
"dependencies": {
3-
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0-*",
4-
"Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.0.0-*",
5-
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*",
6-
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
7-
"Microsoft.AspNetCore.Server.Kestrel.Https": "1.0.0-*",
8-
"Microsoft.Extensions.Configuration.UserSecrets": "1.0.0-*",
9-
"Microsoft.Extensions.FileProviders.Embedded": "1.0.0-*",
10-
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
11-
"Microsoft.Extensions.Logging.Debug": "1.0.0-*",
12-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-*"
3+
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
4+
"Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.0.0",
5+
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
6+
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
7+
"Microsoft.AspNetCore.Server.Kestrel.Https": "1.0.0",
8+
"Microsoft.Extensions.Configuration.UserSecrets": "1.0.0",
9+
"Microsoft.Extensions.FileProviders.Embedded": "1.0.0",
10+
"Microsoft.Extensions.Logging.Console": "1.0.0",
11+
"Microsoft.Extensions.Logging.Debug": "1.0.0",
12+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0"
1313
},
1414
"frameworks": {
1515
"net451": {},
1616
"netcoreapp1.0": {
1717
"dependencies": {
1818
"Microsoft.NETCore.App": {
19-
"version": "1.0.0-*",
19+
"version": "1.0.0",
2020
"type": "platform"
2121
}
2222
}

samples/SocialSample/project.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
{
22
"dependencies": {
3-
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0-*",
4-
"Microsoft.AspNetCore.Authentication.Facebook": "1.0.0-*",
5-
"Microsoft.AspNetCore.Authentication.Google": "1.0.0-*",
6-
"Microsoft.AspNetCore.Authentication.MicrosoftAccount": "1.0.0-*",
7-
"Microsoft.AspNetCore.Authentication.Twitter": "1.0.0-*",
8-
"Microsoft.AspNetCore.DataProtection": "1.0.0-*",
9-
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*",
10-
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
11-
"Microsoft.AspNetCore.Server.Kestrel.Https": "1.0.0-*",
12-
"Microsoft.Extensions.Configuration.UserSecrets": "1.0.0-*",
13-
"Microsoft.Extensions.FileProviders.Embedded": "1.0.0-*",
14-
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
15-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-*"
3+
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
4+
"Microsoft.AspNetCore.Authentication.Facebook": "1.0.0",
5+
"Microsoft.AspNetCore.Authentication.Google": "1.0.0",
6+
"Microsoft.AspNetCore.Authentication.MicrosoftAccount": "1.0.0",
7+
"Microsoft.AspNetCore.Authentication.Twitter": "1.0.0",
8+
"Microsoft.AspNetCore.DataProtection": "1.0.0",
9+
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
10+
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
11+
"Microsoft.AspNetCore.Server.Kestrel.Https": "1.0.0",
12+
"Microsoft.Extensions.Configuration.UserSecrets": "1.0.0",
13+
"Microsoft.Extensions.FileProviders.Embedded": "1.0.0",
14+
"Microsoft.Extensions.Logging.Console": "1.0.0",
15+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0"
1616
},
1717
"buildOptions": {
1818
"emitEntryPoint": true
1919
},
2020
"frameworks": {
21-
"net451": { },
21+
"net451": {},
2222
"netcoreapp1.0": {
2323
"dependencies": {
2424
"Microsoft.NETCore.App": {
25-
"version": "1.0.0-*",
25+
"version": "1.0.0",
2626
"type": "platform"
2727
}
2828
}

src/Microsoft.AspNetCore.Authentication.Cookies/project.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0",
33
"description": "ASP.NET Core middleware that enables an application to use cookie based authentication.",
44
"packOptions": {
55
"repository": {
@@ -21,9 +21,9 @@
2121
"xmlDoc": true
2222
},
2323
"dependencies": {
24-
"Microsoft.AspNetCore.Authentication": "1.0.0-*",
25-
"Microsoft.Extensions.Options": "1.0.0-*",
26-
"Microsoft.Extensions.WebEncoders": "1.0.0-*"
24+
"Microsoft.AspNetCore.Authentication": "1.0.0",
25+
"Microsoft.Extensions.Options": "1.0.0",
26+
"Microsoft.Extensions.WebEncoders": "1.0.0"
2727
},
2828
"frameworks": {
2929
"net451": {},

src/Microsoft.AspNetCore.Authentication.Facebook/project.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0",
33
"description": "ASP.NET Core middleware that enables an application to support Facebook's OAuth 2.0 authentication workflow.",
44
"packOptions": {
55
"repository": {
@@ -21,11 +21,10 @@
2121
"xmlDoc": true
2222
},
2323
"dependencies": {
24-
"Microsoft.AspNetCore.Authentication.OAuth": "1.0.0-*"
24+
"Microsoft.AspNetCore.Authentication.OAuth": "1.0.0"
2525
},
2626
"frameworks": {
2727
"net451": {},
28-
"netstandard1.3": {
29-
}
28+
"netstandard1.3": {}
3029
}
3130
}

0 commit comments

Comments
 (0)