Skip to content

Commit 7510544

Browse files
committed
Fixed VSDevMode.ps1 parameter info
1 parent f4158ee commit 7510544

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: scripts/VSDevMode.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
.SYNOPSIS
33
Run this PowerShell script to enable dev mode and/or a custom script for the TypeScript language service, e.g.
44
5-
PS C:\> .\scripts\VSDevMode.ps1 -enableDevMode -tsScript C:\src\TypeScript\built\local\typescriptServices.js
5+
PS C:\> .\scripts\VSDevMode.ps1 -enableDevMode -tsScript C:\src\TypeScript\built\local\
66
77
Note: If you get security errors, try running powershell as an Administrator and with the "-executionPolicy remoteSigned" switch
88
@@ -13,7 +13,7 @@ Set to "12" for Dev12 (VS2013) or "14" (the default) for Dev14 (VS2015)
1313
Pass this switch to enable attaching a debugger to the language service
1414
1515
.PARAMETER tsScript
16-
The path to a custom language service script to use, e.g. "C:\src\TypeScript\built\local\typescriptServices.js"
16+
The path to a directory containing a custom language service script to use (typescriptServices.js), e.g. "C:\src\TypeScript\built\local\"
1717
#>
1818
Param(
1919
[int]$vsVersion = 14,

0 commit comments

Comments
 (0)