Skip to content

Commit 86b0eed

Browse files
Added run script
1 parent 29a7647 commit 86b0eed

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.vscode/settings.json

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"cSpell.words": [
33
"VSCT",
44
"VSIX",
5+
"VSSDK",
56
"Walkthroughs",
67
"pkgdef",
78
"vsixmanifest",

docs/_layouts/default.html

-4
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,7 @@
77

88
<title>{{ page.title }} | {{ site.title }}</title>
99
<meta name="description" content="{{ page.description }}" />
10-
{% if site.baseurl %}
1110
<base href="{{ site.baseurl }}/" />
12-
{% else %}
13-
<base href="/docs/_site/" />
14-
{% endif %}
1511
<link rel="stylesheet" href="assets/css/style.css" />
1612
<link rel=apple-touch-icon href="assets/img/icon-180x180.png" />
1713
<link rel=icon type=image/png sizes=32x32 href="assets/img/icon-32x32.png" />

docs/getting-started/vocabulary.md

+3
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ TBD
2828
### VSIX
2929
TBD
3030

31+
### VSSDK
32+
This is short for the *Visual Studio SDK* which are the classes, services, and component that make up the public surface are of Visual Studio's extensibility API. It's usually used when referring to the [Microsoft.VisualStudio.SDK](https://www.nuget.org/packages/Microsoft.VisualStudio.SDK/) NuGet package.
33+
3134
### UI Context
3235
TBD
3336

run-site.cmd

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
dotnet tool install --global dotnet-serve
2+
3+
cd docs
4+
start cmd /k dotnet-serve -o -d _site
5+
jekyll b -w

0 commit comments

Comments
 (0)