Skip to content

Commit 6410122

Browse files
Update "getting started" and "development guid" docs
1 parent 3a98962 commit 6410122

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+
@@ -1075,7 +1074,7 @@ single database in one run).
10751074

10761075
ASP.NET Zero contains a separated application that can be a starting
10771076
point for your public web site or a landing page for your application.
1078-
Set **Web.Public** as **Startup Project** and run the application:
1077+
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.
10791078

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

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+
**Note:** Run **npm run watch-less** command to see changes in runtime. This command wathing the **.less** files and compiling them.
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)