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

Commit 38c0dc8

Browse files
committed
Update project.json to target the final .NET Core/ASP.NET Core RC2 packages
1 parent 8dc7160 commit 38c0dc8

File tree

6 files changed

+14
-15
lines changed

6 files changed

+14
-15
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>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ AspNet.Hosting.Extensions
66

77
**The latest nightly builds can be found on [MyGet](https://www.myget.org/gallery/aspnet-contrib)**.
88

9-
[![Build status](https://ci.appveyor.com/api/projects/status/xa09pdugnqqgn0vf/branch/release?svg=true)](https://ci.appveyor.com/project/aspnet-contrib/aspnet-hosting-extensions/branch/release)
10-
[![Build status](https://travis-ci.org/aspnet-contrib/AspNet.Hosting.Extensions.svg?branch=release)](https://travis-ci.org/aspnet-contrib/AspNet.Hosting.Extensions)
9+
[![Build status](https://ci.appveyor.com/api/projects/status/xa09pdugnqqgn0vf/branch/master?svg=true)](https://ci.appveyor.com/project/aspnet-contrib/aspnet-hosting-extensions/branch/master)
10+
[![Build status](https://travis-ci.org/aspnet-contrib/AspNet.Hosting.Extensions.svg?branch=master)](https://travis-ci.org/aspnet-contrib/AspNet.Hosting.Extensions)
1111

1212
## Get started
1313

src/AspNet.Hosting.Extensions/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-alpha2-*",
2+
"version": "1.0.0-alpha2-final",
33

44
"packOptions": {
55
"description": "Hosting extensions for ASP.NET Core.",
@@ -30,7 +30,7 @@
3030

3131
"dependencies": {
3232
"JetBrains.Annotations": { "type": "build", "version": "10.1.4" },
33-
"Microsoft.AspNetCore.Hosting": "1.0.0-rc2-*"
33+
"Microsoft.AspNetCore.Hosting": "1.0.0-rc2-final"
3434
},
3535

3636
"frameworks": {

src/AspNet.Hosting.Katana.Extensions/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-alpha2-*",
2+
"version": "1.0.0-alpha2-final",
33

44
"packOptions": {
55
"description": "OWIN/Katana hosting extensions for ASP.NET Core.",
@@ -32,8 +32,8 @@
3232

3333
"dependencies": {
3434
"JetBrains.Annotations": { "type": "build", "version": "10.1.4" },
35-
"Microsoft.AspNetCore.Hosting": "1.0.0-rc2-*",
36-
"Microsoft.AspNetCore.Owin": "1.0.0-rc2-*",
35+
"Microsoft.AspNetCore.Hosting": "1.0.0-rc2-final",
36+
"Microsoft.AspNetCore.Owin": "1.0.0-rc2-final",
3737
"Microsoft.Owin": "3.0.0"
3838
},
3939

test/AspNet.Hosting.Extensions.Tests/project.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55

66
"dependencies": {
77
"AspNet.Hosting.Extensions": { "target": "project" },
8-
"dotnet-test-xunit": "1.0.0-rc2-*",
9-
"Microsoft.AspNetCore.TestHost": "1.0.0-rc2-*",
8+
"dotnet-test-xunit": "1.0.0-rc2-build10015",
9+
"Microsoft.AspNetCore.TestHost": "1.0.0-rc2-final",
1010
"xunit": "2.1.0"
1111
},
1212

1313
"frameworks": {
1414
"netcoreapp1.0": {
1515
"dependencies": {
16-
"Microsoft.NETCore.App": { "type": "platform", "version": "1.0.0-rc2-*" }
16+
"Microsoft.NETCore.App": { "type": "platform", "version": "1.0.0-rc2-3002702" }
1717
},
1818

1919
"imports": [
@@ -24,7 +24,7 @@
2424

2525
"net451": {
2626
"dependencies": {
27-
"Microsoft.NETCore.Platforms": "1.0.1-rc2-*"
27+
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027"
2828
}
2929
}
3030
},

test/AspNet.Hosting.Katana.Extensions.Tests/project.json

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

66
"dependencies": {
77
"AspNet.Hosting.Katana.Extensions": { "target": "project" },
8-
"dotnet-test-xunit": "1.0.0-rc2-*",
9-
"Microsoft.AspNetCore.TestHost": "1.0.0-rc2-*",
10-
"Microsoft.NETCore.Platforms": "1.0.1-rc2-*",
8+
"dotnet-test-xunit": "1.0.0-rc2-build10015",
9+
"Microsoft.AspNetCore.TestHost": "1.0.0-rc2-final",
10+
"Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
1111
"xunit": "2.1.0"
1212
},
1313

0 commit comments

Comments
 (0)