Skip to content

Commit 96b624c

Browse files
authored
Merge pull request #119 from aspnetzero/gulp-document
Update "getting started" and "development guid" docs
2 parents 1c26433 + a85986c commit 96b624c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/en/Development-Guide-Core.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@ Following tools are needed in order to use ASP.NET Zero Core solution:
1313
- [Visual Studio 2017 v15.3.5](https://www.visualstudio.com)+
1414

1515
- Visual Studio Extensions:
16-
- [Web
17-
Compiler](https://marketplace.visualstudio.com/items?itemName=MadsKristensen.WebCompiler)
18-
- [Typescript](https://www.microsoft.com/en-us/download/details.aspx?id=48593)
16+
17+
- [Typescript](https://www.microsoft.com/en-us/download/details.aspx?id=48593)
1918
2.0+
2019

2120
- [nodejs](https://nodejs.org/en/download/) 6.9+ with npm 3.10+
@@ -1120,7 +1119,7 @@ single database in one run).
11201119

11211120
ASP.NET Zero contains a separated application that can be a starting
11221121
point for your public web site or a landing page for your application.
1123-
Set **Web.Public** as **Startup Project** and run the application:
1122+
Before running the project, we need to run a npm task to bundle and minify the CSS and JavaScript files. In order to do that, we can open a command prompt, navigate to root directory of ***.Web.Public** project and run **npm run create-bundles** command. This command should be run when a new npm package is being added to the solution. Or you can just build your solution and all bundles will be updated automatically.
11241123

11251124
<img src="images/frontend-homepage.jpg" alt="Frontend home page" class="img-thumbnail" width="500" height="496" />
11261125

docs/en/Getting-Started-Core.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ MVC application needs the following tools to be installed:
1414
- [gulp (must be installed globally)](https://www.npmjs.com/package/gulp)
1515
- [yarn](https://yarnpkg.com/)
1616
- [Bundler & Minifier Visual Studio extension](https://visualstudiogallery.msdn.microsoft.com/9ec27da7-e24b-4d56-8064-fd7e88ac1c40)
17-
- [Web Compiler Visual Studio extension](https://visualstudiogallery.msdn.microsoft.com/3b329021-cd7a-4a01-86fc-714c2d05bb6c)
1817

1918
## Create a Project
2019

@@ -74,6 +73,8 @@ ASP.NET Zero supports multi-tenant and single-tenant applications. Multi-tenancy
7473

7574
Before running the project, we need to run a npm task to bundle and minify the CSS and JavaScript files. In order to do that, we can open a command prompt, navigate to root directory of ***.Web.Mvc** project and run **npm run create-bundles** command. This command should be run when a new npm package is being added to the solution. Or you can just build your solution and all bundles will be updated automatically.
7675

76+
Less files are converted to css and min.css files using Gulp. If you run **npm run watch-less** command using command prompt, you can immediately see the changes in runtime. This command is watching all **.less** files under **wwwroot** folder and compile them when any change happens.
77+
7778
Now we are ready.. just run your solution. It will open login page of your web site.
7879

7980
<img src="images/login-screen-3.png" alt="Login page" class="img-thumbnail" />

0 commit comments

Comments
 (0)