Skip to content

Commit e103d36

Browse files
committed
Migrate to the .NET Core/ASP.NET Core RTM packages
1 parent ed633c8 commit e103d36

File tree

32 files changed

+47
-51
lines changed

32 files changed

+47
-51
lines changed

NuGet.config

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<packageSources>
4-
<add key="AspNetCiRelease" value="https://www.myget.org/F/aspnetcirelease/api/v3/index.json" />
54
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
65
</packageSources>
76
</configuration>

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

samples/Mvc.Client/project.json

Lines changed: 15 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -42,30 +42,30 @@
4242
"AspNet.Security.OAuth.Vkontakte": { "target": "project" },
4343
"AspNet.Security.OAuth.WordPress": { "target": "project" },
4444
"AspNet.Security.OAuth.Yahoo": { "target": "project" },
45-
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0-*",
46-
"Microsoft.AspNetCore.Authentication.Google": "1.0.0-*",
47-
"Microsoft.AspNetCore.Authentication.Twitter": "1.0.0-*",
48-
"Microsoft.AspNetCore.Hosting": "1.0.0-*",
49-
"Microsoft.AspNetCore.Mvc": "1.0.0-*",
50-
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-*",
51-
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-*",
52-
"Microsoft.AspNetCore.StaticFiles": "1.0.0-*",
53-
"Microsoft.Extensions.Configuration.CommandLine": "1.0.0-*",
54-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-*",
55-
"Microsoft.Extensions.Logging.Console": "1.0.0-*",
56-
"Microsoft.Extensions.Logging.Debug": "1.0.0-*"
45+
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
46+
"Microsoft.AspNetCore.Authentication.Google": "1.0.0",
47+
"Microsoft.AspNetCore.Authentication.Twitter": "1.0.0",
48+
"Microsoft.AspNetCore.Hosting": "1.0.0",
49+
"Microsoft.AspNetCore.Mvc": "1.0.0",
50+
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
51+
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
52+
"Microsoft.AspNetCore.StaticFiles": "1.0.0",
53+
"Microsoft.Extensions.Configuration.CommandLine": "1.0.0",
54+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
55+
"Microsoft.Extensions.Logging.Console": "1.0.0",
56+
"Microsoft.Extensions.Logging.Debug": "1.0.0"
5757
},
5858

5959
"frameworks": {
6060
"net451": {
6161
"dependencies": {
62-
"Microsoft.NETCore.Platforms": "1.0.1-*"
62+
"Microsoft.NETCore.Platforms": "1.0.1"
6363
}
6464
},
6565

6666
"netcoreapp1.0": {
6767
"dependencies": {
68-
"Microsoft.NETCore.App": { "type": "platform", "version": "1.0.0-*" }
68+
"Microsoft.NETCore.App": { "type": "platform", "version": "1.0.0" }
6969
},
7070

7171
"imports": [
@@ -76,10 +76,7 @@
7676
},
7777

7878
"tools": {
79-
"Microsoft.AspNetCore.Server.IISIntegration.Tools": {
80-
"version": "1.0.0-*",
81-
"imports": "portable-net45+wp80+win8+wpa81+dnxcore50"
82-
}
79+
"Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final"
8380
},
8481

8582
"scripts": {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"dependencies": {
3535
"AspNet.Security.OAuth.Extensions": { "target": "project", "type": "build" },
3636
"JetBrains.Annotations": { "type": "build", "version": "10.1.4" },
37-
"Microsoft.AspNetCore.Authentication.OAuth": "1.0.0-*"
37+
"Microsoft.AspNetCore.Authentication.OAuth": "1.0.0"
3838
},
3939

4040
"frameworks": {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"dependencies": {
3535
"AspNet.Security.OAuth.Extensions": { "target": "project", "type": "build" },
3636
"JetBrains.Annotations": { "type": "build", "version": "10.1.4" },
37-
"Microsoft.AspNetCore.Authentication.OAuth": "1.0.0-*"
37+
"Microsoft.AspNetCore.Authentication.OAuth": "1.0.0"
3838
},
3939

4040
"frameworks": {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"dependencies": {
3535
"AspNet.Security.OAuth.Extensions": { "target": "project", "type": "build" },
3636
"JetBrains.Annotations": { "type": "build", "version": "10.1.4" },
37-
"Microsoft.AspNetCore.Authentication.OAuth": "1.0.0-*"
37+
"Microsoft.AspNetCore.Authentication.OAuth": "1.0.0"
3838
},
3939

4040
"frameworks": {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"dependencies": {
3535
"AspNet.Security.OAuth.Extensions": { "target": "project", "type": "build" },
3636
"JetBrains.Annotations": { "type": "build", "version": "10.1.4" },
37-
"Microsoft.AspNetCore.Authentication.OAuth": "1.0.0-*"
37+
"Microsoft.AspNetCore.Authentication.OAuth": "1.0.0"
3838
},
3939

4040
"frameworks": {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"dependencies": {
3535
"AspNet.Security.OAuth.Extensions": { "target": "project", "type": "build" },
3636
"JetBrains.Annotations": { "type": "build", "version": "10.1.4" },
37-
"Microsoft.AspNetCore.Authentication.OAuth": "1.0.0-*"
37+
"Microsoft.AspNetCore.Authentication.OAuth": "1.0.0"
3838
},
3939

4040
"frameworks": {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"dependencies": {
3535
"AspNet.Security.OAuth.Extensions": { "target": "project", "type": "build" },
3636
"JetBrains.Annotations": { "type": "build", "version": "10.1.4" },
37-
"Microsoft.AspNetCore.Authentication.OAuth": "1.0.0-*"
37+
"Microsoft.AspNetCore.Authentication.OAuth": "1.0.0"
3838
},
3939

4040
"frameworks": {

0 commit comments

Comments
 (0)