You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+27-15
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
# ASP.NET 5 Home
2
-
Latest dev version: [](https://www.myget.org/gallery/aspnetvnext)<br>
Latest dev version: [](https://www.myget.org/gallery/aspnetvnext)<br>
The Home repository is the starting point for people to learn about ASP.NET 5. This repo contains samples and [documentation](https://github.com/aspnet/Home/wiki) to help folks get started and learn more about what's coming in ASP.NET 5.
6
6
7
7
ASP.NET 5 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.
8
8
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).
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).
10
10
11
11
## Contents
12
12
@@ -37,16 +37,22 @@ That said, you can also try out ASP.NET 5 with just a command-prompt and a text
37
37
38
38
### Install the K Version Manager (KVM)
39
39
40
-
The first thing we need to do is setup the tools required to build and run an application. We will start out by getting the [K Version Manager (KVM)](https://github.com/aspnet/Home/wiki/version-manager). You use the K Version Manager to install different versions of the ASP.NET 5 runtime and switch between them.
40
+
The first thing we need to do is setup the tools required to build and run an application. We will start out by getting the [K Version Manager (KVM)](https://github.com/aspnet/Home/wiki/version-manager). We use the K Version Manager to install different versions of the ASP.NET 5 runtime and switch between them.
41
41
42
42
#### Windows
43
-
To install KVM on Windows run the following command, which will download and run a script that installs KVM for the current user (requires admin privileges):
43
+
To install KVM on Windows run the following command, which will download and run a script that installs KVM for the current user (requires admin privileges for Powershell). This will use the currently released version of `kvm` (from the `release` branch of this repo).
After the script has run open a new command prompt to start using KVM.
51
57
52
58
#### OS X:
@@ -60,10 +66,16 @@ To install KVM and the correct version of Mono on OS X using [Homebrew](http://b
60
66
61
67
#### Linux:
62
68
63
-
To install KVM on Linux run the following command:
69
+
Installing KVM requires `curl`. Do verify if that is installed on the machine. Next install KVM on Linux run the following command:
70
+
71
+
```
72
+
curl -sSL https://raw.githubusercontent.com/aspnet/Home/release/kvminstall.sh | sh && source ~/.k/kvm/kvm.sh
73
+
```
74
+
75
+
If you want to run on the bleeding edge and install the latest development version of KVM, use this command:
64
76
65
77
```
66
-
curl -sSL https://raw.githubusercontent.com/aspnet/Home/master/kvminstall.sh | sh && source ~/.kre/kvm/kvm.sh
78
+
curl -sSL https://raw.githubusercontent.com/aspnet/Home/release/kvminstall.sh | KVM_BRANCH=dev sh && source ~/.k/kvm/kvm.sh
67
79
```
68
80
69
81
Note that on Linux you need to also install [Mono](http://mono-project.com) 3.4.1 or later.
@@ -78,9 +90,9 @@ This command will download the specified version of the K Runtime Environment (K
78
90
79
91
The samples in this repo are basic starting points for you to experiment with.
80
92
81
-
+[ConsoleApp](https://github.com/aspnet/Home/tree/master/samples/ConsoleApp). This is just basic console app if you want to use it as a starting point.
82
-
+[HelloWeb](https://github.com/aspnet/Home/tree/master/samples/HelloWeb). This is a minimal startup class that shows welcome page and static file middleware. This is mostly for you to run through the steps in the readme and make sure you have everything setup and working correctly.
83
-
+[HelloMvc](https://github.com/aspnet/Home/tree/master/samples/HelloMvc). This sample is a basic MVC app. It is not designed to show all the functionality of the new web stack, but to give you a starting point to play with features.
93
+
+[ConsoleApp](https://github.com/aspnet/Home/tree/release/samples/ConsoleApp). This is just basic console app if you want to use it as a starting point.
94
+
+[HelloWeb](https://github.com/aspnet/Home/tree/release/samples/HelloWeb). This is a minimal startup class that shows welcome page and static file middleware. This is mostly for you to run through the steps in the readme and make sure you have everything setup and working correctly.
95
+
+[HelloMvc](https://github.com/aspnet/Home/tree/release/samples/HelloMvc). This sample is a basic MVC app. It is not designed to show all the functionality of the new web stack, but to give you a starting point to play with features.
84
96
+[MVC Music Store](https://github.com/aspnet/MusicStore) and [BugTracker](https://github.com/aspnet/BugTracker) are application samples that are both being ported to ASP.NET 5. Each of these samples have their own separate repositories that you can look at.
85
97
86
98
### Running the samples
@@ -115,13 +127,13 @@ The community standup is held every week and streamed live to YouTube. You can v
115
127
116
128
If you have questions you can also jump online during the next standup and have them answered live.
We have some useful documentation on the wiki of this Repo. This wiki is a central spot for docs from any part of the stack.
120
132
121
133
If you see errors, or want some extra content, then feel free to create an issue or send a pull request (see feedback section below).
122
134
123
-
### [ASP.NET/5](http://www.asp.net/vnext)
124
-
The 5 page on the ASP.NET site has links to some TechEd videos and articles with some good information about ASP.NET 5.
135
+
### [ASP.NET/vNext](http://www.asp.net/vnext)
136
+
The vNext page on the ASP.NET site has links to some TechEd videos and articles with some good information about ASP.NET 5.
125
137
126
138
## Repos and Projects
127
139
@@ -138,4 +150,4 @@ A description of all the repos is [here](https://github.com/aspnet/Home/wiki/Rep
138
150
139
151
## Feedback
140
152
141
-
Check out the [contributing](https://github.com/aspnet/Home/blob/master/CONTRIBUTING.md) page to see the best places to log issues and start discussions.
153
+
Check out the [contributing](https://github.com/aspnet/Home/blob/release/CONTRIBUTING.md) page to see the best places to log issues and start discussions.
0 commit comments