Skip to content

Commit

Permalink
Merge branch 'UpdateBeta'
Browse files Browse the repository at this point in the history
Conflicts:
	NuGet.Config
	README.md
	kvm.ps1
	kvm.sh
	samples/HelloMvc/project.json
	samples/HelloWeb/project.json

 Merging beta release changes
  • Loading branch information
Suhas Joshi committed Nov 12, 2014
2 parents 2cd1430 + c667900 commit 88ec280
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 22 deletions.
7 changes: 0 additions & 7 deletions NuGet.Config

This file was deleted.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The Home repository is the starting point for people to learn about ASP.NET vNex

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.

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).
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).

## Contents

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

## Getting Started

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.
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.

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.

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

* Install [Homebrew](http://brew.sh) if it is not already installed.
* 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.
* 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.
* Run command `brew install kvm` to install KVM. This also automatically install the latest KRE package from https://www.nuget.org/api/v2 feed.
* Run command `source kvm.sh` on your terminal if your terminal cannot understand kvm.

#### Linux:
Expand Down
2 changes: 1 addition & 1 deletion kvm.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function String-IsEmptyOrWhitespace([string]$str) {

if (!$feed)
{
$feed = "https://www.myget.org/F/aspnetmaster/api/v2";
$feed = "https://www.nuget.org/api/v2";
}

$scriptPath = $myInvocation.MyCommand.Definition
Expand Down
2 changes: 1 addition & 1 deletion kvm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ fi

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

_kvm_find_latest() {
Expand Down
10 changes: 7 additions & 3 deletions samples/ConsoleApp/project.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
{
"dependencies": {
"System.Console": "4.0.0.0"

},
"frameworks": {
"net45": {},
"k10": {}
"aspnet50": {},
"aspnetcore50": {
"dependencies": {
"System.Console": "4.0.0-beta-*"
}
}
}
}
8 changes: 4 additions & 4 deletions samples/HelloMvc/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:5001",
"kestrel": "Microsoft.AspNet.Hosting --server Kestrel --server.urls http://localhost:5004"
},
"frameworks": {
"aspnet50": { },
"aspnetcore50": { }
}
"frameworks": {
"aspnet50": {},
"aspnetcore50": {}
}
}
6 changes: 3 additions & 3 deletions samples/HelloWeb/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"kestrel": "Microsoft.AspNet.Hosting --server Kestrel --server.urls http://localhost:5004"
},
"frameworks": {
"aspnet50": { },
"aspnetcore50": { }
}
"aspnet50": {},
"aspnetcore50": {}
}
}

0 comments on commit 88ec280

Please sign in to comment.