Skip to content

Commit 9c7748c

Browse files
Fixed readme
1 parent 8fa2fe7 commit 9c7748c

File tree

1 file changed

+30
-30
lines changed
  • AngularRegistrationSample/MonacoSampleAssets

1 file changed

+30
-30
lines changed

AngularRegistrationSample/MonacoSampleAssets/README.md

+30-30
Original file line numberDiff line numberDiff line change
@@ -17,55 +17,55 @@ This sample script can be used to demonstrate various topics concerning Visual S
1717

1818
## Monaco Hello World
1919

20-
1. Add default.html with html snippet ? Ctrl + Blank
21-
2. Add default.css with css snippet
20+
1. Add *default.html* with *html* snippet and *Ctrl + Blank*
21+
2. Add *default.css* with *css* snippet
2222
3. Show some editor features
23-
1. Ctrl+E $ ? Editor features
23+
1. *Ctrl+E $* Editor features
2424
2. CSS Intellisense
2525
3. Side-by-side editing
26-
4. Show site in browser
26+
4. Show site in browser
2727
5. Commit to git
2828
6. Push back to VSOnline
29-
1. git remote –v
30-
2. git push origin master
29+
1. `git remote –v`
30+
2. `git push origin master`
3131
7. Show some editor features
3232
1. Changes view
3333
2. Undo
3434

3535
## TypeScript
3636

3737
1. Install TypeScript
38-
1. npm install typescript –g
39-
2. Add default.ts with sayHello function with alert(), call it in onload
40-
3. Compile default.ts with tsc
38+
1. `npm install typescript –g`
39+
2. Add *default.ts* with *sayHello* function with *alert()*, call it in *onload*
40+
3. Compile *default.ts* in console with `tsc default.ts`
4141
4. Show site in browser
4242

4343
## Prepare for Larger Sample
4444

45-
1. Speak about .d.ts files
46-
1. Show DefinitelyTyped project
45+
1. Speak about *.d.ts* files
46+
1. Show *DefinitelyTyped* project
4747
2. Install type definitions
48-
1. npm install tsd –g
49-
2. tsd query jquery –a install
50-
3. tsd query angular –a install
51-
4. tsd query angular-route –a install
52-
5. tsd query AzureMobileServicesClient –a install
53-
3. Change default.ts to use TypeScript
48+
1. `npm install tsd –g`
49+
2. `tsd query jquery –a install`
50+
3. `tsd query angular –a install`
51+
4. `tsd query angular-route –a install`
52+
5. `tsd query AzureMobileServicesClient –a install`
53+
3. Change *default.ts* to use JQuery with TypeScript
5454
1. `/// <reference path="./typings/jquery/jquery.d.ts" /> function sayHello() { $("#target").html("<h1>Hello World</h1>"); }`
55-
4. Show IntelliSense based on .d.ts
55+
4. Show IntelliSense based on *.d.ts*
5656

57-
5. Remove default.* demo files
57+
5. Remove all *default* demo files
5858

5959
## Prepare Azure Mobile Service
6060

6161
1. Create Mobile Service in Azure
6262
1. Make sure to update service URI in controllers
6363
2. Install type definitions
64-
1. tsd query AzureMobileServicesClient –a install
64+
1. `tsd query AzureMobileServicesClient –a install`
6565

6666
## Implement Solution
6767

68-
1. Upload 01 Sourcecode.zip via drag-and-drop
68+
1. Upload *01 Sourcecode.zip* via drag-and-drop from explorer
6969
2. Unzip file in the browser
7070
3. Compile TS files in console
7171
4. Show some editor functions
@@ -74,20 +74,20 @@ This sample script can be used to demonstrate various topics concerning Visual S
7474

7575
## Automate Build Using Grunt
7676

77-
1. Upload 02 Grunt Typescript.zip
77+
1. Upload *02 Grunt Typescript.zip*
7878
2. Unzip file in browser
79-
1. npm install
80-
3. Show Build via Grunt
81-
1. Single Grunt
82-
2. Grunt Watch
79+
1. `npm install`
80+
3. Show Build via *Grunt*
81+
1. Single *Grunt*
82+
2. *Grunt Watch*
8383

84-
## Add Unit Testing With Jasmine
84+
## Add Unit Testing With *Jasmine*
8585

8686
1. Install type definitions
87-
1. tsd query Jasmine –a install
88-
2. Upload 03 Grunt With Tests.zip
87+
1. `tsd query Jasmine –a install`
88+
2. Upload *03 Grunt With Tests.zip*
8989
3. Unzip file in browser
90-
1. npm install
90+
1. `npm install`
9191
4. Show Build via Grunt
9292
1. Single Grunt
9393
2. Grunt Watch

0 commit comments

Comments
 (0)