This guide is designed to get you started building applications with the latest development versions ASP.NET 5 and DNX. This means nightly builds and potentially broken or unstable packages.
If you want a more stable, released, experience then you should go to https://www.asp.net/vnext.
The key part of working with development feeds is getting your environment set up so that you can acquire and switch to new builds of the DNX. Once you have that then it is just a matter of pulling the latest packages from the development MyGet feed.
In order to be able to get new builds of the DNX, and switch between them, you need to get the .NET Version Manager (DNVM) command line tool.
The easiest way to get started on Windows is to grab the latest preview of Visual Studio 2015, which can be found here.
Visual Studio will install DNVM for you, so if you open a developer command prompt and type dnvm
you should get some help text.
If you don't want to install Visual Studio or want to upgrade DNVM to the latest version then you need to run the following command:
####CMD
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "&{$Branch='dev';$wc=New-Object System.Net.WebClient;$wc.Proxy=[System.Net.WebRequest]::DefaultWebProxy;$wc.Proxy.Credentials=[System.Net.CredentialCache]::DefaultNetworkCredentials;Invoke-Expression ($wc.DownloadString('https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.ps1'))}"
####Powershell
&{$Branch='dev';$wc=New-Object System.Net.WebClient;$wc.Proxy=[System.Net.WebRequest]::DefaultWebProxy;$wc.Proxy.Credentials=[System.Net.CredentialCache]::DefaultNetworkCredentials;Invoke-Expression ($wc.DownloadString('https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.ps1'))}
This will download the DNVM script and put it in your user profile. You can check the location of DNVM by running the following in a cmd prompt:
where dnvm
If the output of
where dnvm
shows a program files location before the user profile, or doesn't show an entry in user profile, then the install has either failed or your PATH is incorrect. After installing dnvm you should have the dnvm script in%USERPROFILE%\.dnx\bin
and that path needs to be on your PATH.
See the instructions on the ASP.NET 5 Documentation site: Installing ASP.NET 5 on Mac OS X
See the instructions on the ASP.NET 5 Documentation site: Installing ASP.NET 5 on Linux
Now that you have DNVM, you need to use it to download a DNX to run your applications with:
dnvm upgrade
DNVM has the concept of a stable and unstable feed. Stable defaults to NuGet.org while unstable defaults to our dev MyGet feed. So if you add
-u
or-unstable
to any of the install or upgrade commands you will get our latest CI build of the DNX instead of the one last released on NuGet.
DNVM works by manipulating your path. When you install a runtime it downloads it and adds the path to the dnx binary to your PATH
. After doing upgrade you should be able to run dnvm list
and see an active runtime in the list.
You should also be able to run dnx
and see the help text of the dnx
command.
- Clone the ASP.NET 5 Home repository: https://github.com/aspnet/home
- Change directory to the folder of the sample you want to run
- Run
dnu restore
to restore the packages required by that sample. - You should see a bunch of output as all the dependencies of the app are downloaded from MyGet.
- Run the sample using the appropriate DNX command:
- For the console app run
dnx run
. - For the web apps run
dnx kestrel
.
- For the console app run
- You should see the output of the console app or a message that says the site is now started.
- You can navigate to the web apps in a browser by navigating to
http://localhost:5004
The community standup is held every week and streamed live to YouTube. You can view past standups in the linked playlist.
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.
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).
The vNext page on the ASP.NET site has links to some TechEd videos and articles with some good information about vNext.
These are some of the most common repos:
- DependencyInjection - basic dependency injection infrastructure and default implementation
- EntityFramework - data access technology
- Identity - users and membership system
- DNX - core runtime, project system, loader
- MVC - MVC framework for web apps and services
- SignalR-Server - real-time
A description of all the repos is here.
Check out the contributing page to see the best places to log issues and start discussions.