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
- Host: GitHub
- URL: https://github.com/scottaddie/mvc-task-runners
- Owner: scottaddie
- Created: 2015-08-14T21:33:03.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-10-22T16:03:08.000Z (over 9 years ago)
- Last Synced: 2025-02-05T05:28:09.381Z (4 months ago)
- Language: C#
- Homepage:
- Size: 223 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`.