Skip to content

Commit 88ec280

Browse files
author
Suhas Joshi
committed
Merge branch 'UpdateBeta'
Conflicts: NuGet.Config README.md kvm.ps1 kvm.sh samples/HelloMvc/project.json samples/HelloWeb/project.json Merging beta release changes
2 parents 2cd1430 + c667900 commit 88ec280

File tree

7 files changed

+19
-22
lines changed

7 files changed

+19
-22
lines changed

NuGet.Config

Lines changed: 0 additions & 7 deletions
This file was deleted.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The Home repository is the starting point for people to learn about ASP.NET vNex
66

77
ASP.NET vNext is being actively developed by the ASP.NET team assigned to the Microsoft Open Tech Hub and in collaboration with a community of open source developers. Together we are dedicated to creating the best possible platform for web development.
88

9-
The samples provided in this repo are designed to show some of the features of the new framework and to provide a starting point for further exploration. The NuGet.config file in the repo points to a MyGet feed (https://www.myget.org/F/aspnetmaster/) that has all the packages being developed. This feed is updated with each preview release. To try out the latest bits under development use the dev feed instead (https://www.myget.org/F/aspnetvnext).
9+
The samples provided in this repo are designed to show some of the features of the new framework and to provide a starting point for further exploration. All the component packages are available on Nuget. To try out the latest bits under development switch to the dev branch of the Home repo and use the dev feed in Nuget.config (https://www.myget.org/F/aspnetvnext).
1010

1111
## Contents
1212

@@ -31,7 +31,7 @@ These are the current minimum requirements for the latest preview release. They
3131

3232
## Getting Started
3333

34-
The easiest way to get started with ASP.NET vNext is to try out the latest preview of Visual Studio "14". You can find installation instructions and getting started documentation at http://www.asp.net/vnext.
34+
The easiest way to get started with ASP.NET vNext is to try out the latest preview of Visual Studio 2015 Preview. You can find installation instructions and getting started documentation at http://www.asp.net/vnext.
3535

3636
That said, you can also try out ASP.NET vNext with just a command-prompt and a text editor. The following instructions will walk you through getting your dev environment setup.
3737

@@ -52,7 +52,7 @@ To install KVM and the correct version of Mono on OS X using [Homebrew](http://b
5252

5353
* Install [Homebrew](http://brew.sh) if it is not already installed.
5454
* Run command `brew tap aspnet/k` to tap the ASP.NET vNext related git repositories. If you had already tapped the repo for previous releases, run `brew untap aspnet/k` to delete the old commands and tap again to get the updated brew scripts.
55-
* Run command `brew install kvm` to install KVM. This also automatically install the latest KRE package from https://www.myget.org/f/aspnetmaster/api/v2 feed.
55+
* Run command `brew install kvm` to install KVM. This also automatically install the latest KRE package from https://www.nuget.org/api/v2 feed.
5656
* Run command `source kvm.sh` on your terminal if your terminal cannot understand kvm.
5757

5858
#### Linux:

kvm.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ function String-IsEmptyOrWhitespace([string]$str) {
3838

3939
if (!$feed)
4040
{
41-
$feed = "https://www.myget.org/F/aspnetmaster/api/v2";
41+
$feed = "https://www.nuget.org/api/v2";
4242
}
4343

4444
$scriptPath = $myInvocation.MyCommand.Definition

kvm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ fi
1515

1616
KRE_USER_PACKAGES="$KRE_USER_HOME/packages"
1717
if [ -z "$KRE_FEED" ]; then
18-
KRE_FEED="https://www.myget.org/F/aspnetmaster/api/v2"
18+
KRE_FEED="https://www.nuget.org/api/v2"
1919
fi
2020

2121
_kvm_find_latest() {

samples/ConsoleApp/project.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
{
22
"dependencies": {
3-
"System.Console": "4.0.0.0"
3+
44
},
55
"frameworks": {
6-
"net45": {},
7-
"k10": {}
6+
"aspnet50": {},
7+
"aspnetcore50": {
8+
"dependencies": {
9+
"System.Console": "4.0.0-beta-*"
10+
}
11+
}
812
}
913
}

samples/HelloMvc/project.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:5001",
1111
"kestrel": "Microsoft.AspNet.Hosting --server Kestrel --server.urls http://localhost:5004"
1212
},
13-
"frameworks": {
14-
"aspnet50": { },
15-
"aspnetcore50": { }
16-
}
13+
"frameworks": {
14+
"aspnet50": {},
15+
"aspnetcore50": {}
16+
}
1717
}

samples/HelloWeb/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"kestrel": "Microsoft.AspNet.Hosting --server Kestrel --server.urls http://localhost:5004"
1212
},
1313
"frameworks": {
14-
"aspnet50": { },
15-
"aspnetcore50": { }
16-
}
14+
"aspnet50": {},
15+
"aspnetcore50": {}
16+
}
1717
}

0 commit comments

Comments
 (0)