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

Commit 46ea0b8

Browse files
committed
Use ASP.NET Core RC2 release packages
1 parent 6442dab commit 46ea0b8

File tree

11 files changed

+28
-28
lines changed

11 files changed

+28
-28
lines changed

NuGet.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<packageSources>
4-
<add key="AspNetCiDev" value="https://www.myget.org/F/aspnetcidev/api/v3/index.json" />
4+
<add key="AspNetCiRelease" value="https://www.myget.org/F/aspnetcirelease/api/v3/index.json" />
55
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
66
<add key="aspnet-contrib" value="https://www.myget.org/F/aspnet-contrib/api/v3/index.json" />
77
</packageSources>

build.ps1

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

6-
$koreBuildZip="https://github.com/aspnet/KoreBuild/archive/dev.zip"
6+
$koreBuildZip="https://github.com/aspnet/KoreBuild/archive/release.zip"
77
if ($env:KOREBUILD_ZIP)
88
{
99
$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/dev.zip"
5+
koreBuildZip="https://github.com/aspnet/KoreBuild/archive/release.zip"
66
if [ ! -z $KOREBUILD_ZIP ]; then
77
koreBuildZip=$KOREBUILD_ZIP
88
fi

src/AspNet.Security.OAuth.Introspection/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929

3030
"dependencies": {
3131
"JetBrains.Annotations": { "type": "build", "version": "10.1.2-eap" },
32-
"Microsoft.AspNetCore.Authentication": "1.0.0-*",
33-
"Microsoft.Extensions.Caching.Abstractions": "1.0.0-*",
32+
"Microsoft.AspNetCore.Authentication": "1.0.0-rc2-*",
33+
"Microsoft.Extensions.Caching.Abstractions": "1.0.0-rc2-*",
3434
"Newtonsoft.Json": "8.0.3"
3535
},
3636

@@ -45,7 +45,7 @@
4545

4646
"netstandard1.3": {
4747
"dependencies": {
48-
"System.Dynamic.Runtime": "4.0.11-*"
48+
"System.Dynamic.Runtime": "4.0.11-rc2-*"
4949
},
5050

5151
"imports": [

src/AspNet.Security.OAuth.Validation/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
"dependencies": {
3131
"JetBrains.Annotations": { "type": "build", "version": "10.1.2-eap" },
32-
"Microsoft.AspNetCore.Authentication": "1.0.0-*"
32+
"Microsoft.AspNetCore.Authentication": "1.0.0-rc2-*"
3333
},
3434

3535
"frameworks": {

src/Owin.Security.OAuth.Introspection/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030

3131
"dependencies": {
3232
"JetBrains.Annotations": { "type": "build", "version": "10.1.2-eap" },
33-
"Microsoft.Extensions.Caching.Memory": "1.0.0-*",
34-
"Microsoft.Extensions.Logging": "1.0.0-*",
35-
"Microsoft.Owin.Security.Interop": "1.0.0-*",
33+
"Microsoft.Extensions.Caching.Memory": "1.0.0-rc2-*",
34+
"Microsoft.Extensions.Logging": "1.0.0-rc2-*",
35+
"Microsoft.Owin.Security.Interop": "1.0.0-rc2-*",
3636
"Newtonsoft.Json": "8.0.3"
3737
},
3838

src/Owin.Security.OAuth.Validation/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030

3131
"dependencies": {
3232
"JetBrains.Annotations": { "type": "build", "version": "10.1.2-eap" },
33-
"Microsoft.Extensions.Logging": "1.0.0-*",
34-
"Microsoft.Owin.Security.Interop": "1.0.0-*"
33+
"Microsoft.Extensions.Logging": "1.0.0-rc2-*",
34+
"Microsoft.Owin.Security.Interop": "1.0.0-rc2-*"
3535
},
3636

3737
"frameworks": {

test/AspNet.Security.OAuth.Introspection.Tests/project.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@
44
},
55

66
"dependencies": {
7-
"AspNet.Security.OAuth.Introspection": "1.0.0-*",
8-
"Microsoft.AspNetCore.TestHost": "1.0.0-*",
9-
"Microsoft.Extensions.Caching.Memory": "1.0.0-*",
10-
"Microsoft.Extensions.Logging.Debug": "1.0.0-*",
7+
"AspNet.Security.OAuth.Introspection": "1.0.0-alpha1-*",
8+
"Microsoft.AspNetCore.TestHost": "1.0.0-rc2-*",
9+
"Microsoft.Extensions.Caching.Memory": "1.0.0-rc2-*",
10+
"Microsoft.Extensions.Logging.Debug": "1.0.0-rc2-*",
1111
"xunit": "2.1.0"
1212
},
1313

1414
"frameworks": {
1515
"netcoreapp1.0": {
1616
"dependencies": {
17-
"dotnet-test-xunit": "1.0.0-dev-*",
18-
"Microsoft.NETCore.App": { "type": "platform", "version": "1.0.0-*" }
17+
"dotnet-test-xunit": "1.0.0-rc2-*",
18+
"Microsoft.NETCore.App": { "type": "platform", "version": "1.0.0-rc2-*" }
1919
},
2020

2121
"imports": [

test/AspNet.Security.OAuth.Validation.Tests/project.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@
44
},
55

66
"dependencies": {
7-
"AspNet.Security.OAuth.Validation": "1.0.0-*",
8-
"Microsoft.AspNetCore.TestHost": "1.0.0-*",
9-
"Microsoft.Extensions.Caching.Memory": "1.0.0-*",
10-
"Microsoft.Extensions.Logging.Debug": "1.0.0-*",
7+
"AspNet.Security.OAuth.Validation": "1.0.0-alpha1-*",
8+
"Microsoft.AspNetCore.TestHost": "1.0.0-rc2-*",
9+
"Microsoft.Extensions.Caching.Memory": "1.0.0-rc2-*",
10+
"Microsoft.Extensions.Logging.Debug": "1.0.0-rc2-*",
1111
"xunit": "2.1.0"
1212
},
1313

1414
"frameworks": {
1515
"netcoreapp1.0": {
1616
"dependencies": {
17-
"dotnet-test-xunit": "1.0.0-dev-*",
18-
"Microsoft.NETCore.App": { "type": "platform", "version": "1.0.0-*" },
19-
"moq.netcore": "4.4.0-*",
20-
"System.Diagnostics.TraceSource": "4.0.0-*"
17+
"dotnet-test-xunit": "1.0.0-rc2-*",
18+
"Microsoft.NETCore.App": { "type": "platform", "version": "1.0.0-rc2-*" },
19+
"moq.netcore": "4.4.0-beta8",
20+
"System.Diagnostics.TraceSource": "4.0.0-rc2-*"
2121
},
2222

2323
"imports": [

test/Owin.Security.OAuth.Introspection.Tests/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
"dependencies": {
77
"Microsoft.Owin.Testing": "3.0.1",
8-
"Owin.Security.OAuth.Introspection": "1.0.0-*",
8+
"Owin.Security.OAuth.Introspection": "1.0.0-alpha1-*",
99
"xunit": "2.1.0",
1010
"xunit.runner.console": "2.1.0"
1111
},

0 commit comments

Comments
 (0)