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
+46-8Lines changed: 46 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,36 @@
1
1
# aspnet-template
2
2
Improved [Visual Studio 2015](https://www.visualstudio.com/) project template for [ASP.NET 5](http://www.asp.net/).
3
3
4
-
**Release date: 20th of July 2015** (when Visual Studio 2015 is released).
5
-
6
4
While the built in ASP.NET 5 (beta) project template in Visual Studio 2015 comes with basic Gulp script,
7
5
this repository contains an extended and improved template that you can copy and use for your own projects.
8
6
7
+
Template is designed as a starting point for building large scale Angular applications. It includes dynamic (lazy) loading
8
+
of modules (features) and individual complication of those modules. This is a Single Page Application template where
9
+
all the ASP.NET Razor files (.cshtml) have been removed and is no longer in use.
10
+
9
11
Template is optimized for performance of the final results, with only two files for scripts and two files for styles,
10
-
this will reduce the loading time for your web apps compared to loading individual components.
12
+
this will reduce the loading time for your web apps compared to loading individual components. Individual modules are
13
+
additionally compiled down to two files and lazy loaded upon request.
11
14
12
15
Source maps ensures great debugging capability while developing, even when referencing the minified versions of outputs.
13
16
14
17
Need to learn more about gulp to fully understand what's going on? Read [Building With Gulp](http://www.smashingmagazine.com/2014/06/11/building-with-gulp/).
15
18
19
+
## Documentation
20
+
21
+
### Ports
22
+
The template utilizes DNX for hosting and not IIS Express, which is default with the standard ASP.NET 5 beta project template.
23
+
Additionally is the Launch URL when running with F5 configured to launch the BrowserSync page and not directly the DNX hosted
24
+
page.
25
+
26
+
Following ports are standard with the template:
27
+
28
+
http://localhost:7600/ - DNX hosted ASP.NET 5 web app.
29
+
http://localhost:7601/ - BrowserSync proxy URL. Launch URL from F5 (start) and Gulp script.
0 commit comments