An open API service indexing awesome lists of open source software.

https://github.com/scottaddie/mvc-task-runners

A sample ASP.NET 5 application to accompany my "JavaScript Task Runners for the ASP.NET Developer" presentation
https://github.com/scottaddie/mvc-task-runners

Last synced: 2 months ago
JSON representation

A sample ASP.NET 5 application to accompany my "JavaScript Task Runners for the ASP.NET Developer" presentation

Awesome Lists containing this project

README

        

# mvc-task-runners
A sample ASP.NET 5 application to accompany my "JavaScript Task Runners for the ASP.NET Developer" presentation. This application demonstrates the use of Gulp with MVC 6. See the slide deck [here](https://github.com/scottaddie/slide-decks/blob/master/JavaScript%20Task%20Runners%20for%20the%20ASP.NET%20Developer.pptx).

##Project Setup
These setup instructions assume that you have Visual Studio 2015 installed. If not installed, then refer to the instructions [here](https://github.com/aspnet/home/#upgrading-dnvm-or-running-without-visual-studio) to install the .NET Version Manager (DNVM).

1. Install Node.js with NPM.
2. Install the local project's NPM packages as follows:
`npm install`
3. Restore/install the NuGet packages listed in project.json as follows:
`dnu restore`. If the "dnu" command is not recognized, then first try executing this command:
`dnvm upgrade`.
4. Navigate to the project directory ("mvc-task-runners"), and run the following command:
`dnx web`
Note the localhost address printed to the console.
5. Navigate to the aforementioned localhost address in your browser of choice. Typically, the localhost address is something like `http://localhost:5000`.