Skip to content

Commit 5683f87

Browse files
authored
Merge pull request #7200 from gregvanl/UpdateAlias
Update author alias
2 parents b206056 + f2c8571 commit 5683f87

38 files changed

+54
-113
lines changed

docs/devinit/devinit-and-codespaces.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: devinit and GitHub Codespaces
33
description: Learn how to customize a codespace for Visual Studio using devinit.
44
ms.date: 08/28/2020
55
ms.topic: reference
6-
author: andster
6+
author: andysterland
77
ms.author: andster
88
manager: jillfra
99
ms.workload:
@@ -50,12 +50,12 @@ In this example _.devcontainer.json_ file below is placed in the repo root and `
5050

5151
When the current working directory contains a _.devinit.json_ file.
5252

53-
```batch
53+
```console
5454
> devinit init
5555
```
5656

5757
When the _.devinit.json_ is in another directory.
5858

59-
```batch
59+
```console
6060
> devinit init -f path/to/.devinit.json
6161
```

docs/devinit/devinit-commands.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: devinit Commands
33
description: Details on how to use devinit commands to install components.
44
ms.date: 08/28/2020
55
ms.topic: reference
6-
author: andster
6+
author: andysterland
77
ms.author: andster
88
manager: jillfra
99
ms.workload:
@@ -16,7 +16,7 @@ ms.technology: devinit
1616

1717
## Init
1818

19-
```batch
19+
```console
2020
> devinit init
2121
```
2222

@@ -35,7 +35,7 @@ Optional options for the `devinit init` command.
3535

3636
## Run
3737

38-
```batch
38+
```console
3939
> devinit run -t <toolname>
4040
```
4141

@@ -85,27 +85,27 @@ Emit verbose output to standard output. If the tool to be executed supports a ve
8585

8686
Using an `<arg>` that includes a space in its value must include an additional pair of escaped quotes.
8787

88-
```batch
88+
```console
8989
> devinit run -t <toolname> -<somearg> "<some value>"
9090
```
9191

9292
For installing dotnet into a specific directory `C:\Program Files\dotnet`:
9393

94-
```batch
94+
```console
9595
> devinit run -t require-dotnetcoresdk --"-InstallDir \"C:\Program Files\dotnet\""
9696
```
9797

9898
## List
9999

100-
```batch
100+
```console
101101
> devinit list
102102
```
103103

104104
Prints a list of all the available tools.
105105

106106
## Show
107107

108-
```batch
108+
```console
109109
> devinit show -t <toolname>
110110
```
111111

@@ -117,15 +117,15 @@ Prints help information for a given tool.
117117

118118
## Version
119119

120-
```batch
120+
```console
121121
> devinit version
122122
```
123123

124124
Prints the current version information for devinit.
125125

126126
## Help
127127

128-
```batch
128+
```console
129129
> devinit help
130130
> devinit help list
131131
```

docs/devinit/devinit-json.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: devinit Configuration File
33
description: Documentation for the .devinit.json manifest file for devinit.
44
ms.date: 08/28/2020
55
ms.topic: reference
6-
author: andster
6+
author: andysterland
77
ms.author: andster
88
manager: jillfra
99
ms.workload:

docs/devinit/devinit-tool-list.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Available Tools
33
description: List of all the devinit tools that can be used to customize a development environment.
44
ms.date: 08/28/2020
55
ms.topic: reference
6-
author: andster
6+
author: andysterland
77
ms.author: andster
88
manager: jillfra
99
ms.workload:
@@ -29,7 +29,6 @@ The table below contains a list of all the currently available tools for devinit
2929
| [**require-azurecli**](tool-require-azurecli.md) | Tool to install the Azure CLI. |
3030
| [**require-dotnetcoresdk**](tool-require-dotnetcoresdk.md) | Tool to install the .NET Core SDK and shared runtime. |
3131
| [**require-dotnetframeworksdk**](tool-require-dotnetframeworksdk.md) | Tool to install the .NET Framework SDK. |
32-
| [**require-gitsubmodule**](tool-require-gitsubmodule.md) | Restore Git Submodule. Use local `.gitmodules` if no `.gitmodules` is passed. |
3332
| [**require-mssql**](tool-require-mssql.md) | Tool to install MS SQL Server 2019. |
3433
| [**require-nodejs**](tool-require-nodejs.md) | Tool to install Nodejs and NPM. |
3534
| [**require-npm**](tool-require-npm.md) | Tool to install NPM. |

docs/devinit/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Frequently Asked Questions
33
description: Frequently asked questions for the devinit tool.
44
ms.date: 08/28/2020
55
ms.topic: reference
6-
author: andster
6+
author: andysterland
77
ms.author: andster
88
manager: jillfra
99
ms.workload:

docs/devinit/getting-started-with-devinit.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Getting Started with devinit
33
description: Getting started guide for devinit.
44
ms.date: 08/28/2020
55
ms.topic: reference
6-
author: andster
6+
author: andysterland
77
ms.author: andster
88
manager: jillfra
99
ms.workload:
@@ -28,7 +28,7 @@ For this step, think about the instructions you'd give someone to get up and run
2828

2929
Now all someone has to do after cloning your repo is run `devinit init`.
3030

31-
```batch
31+
```console
3232
> devinit init
3333
```
3434

docs/devinit/sample-all-tool.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: All tools
33
description: Example of using all the devinit tools.
44
ms.date: 08/28/2020
55
ms.topic: reference
6-
author: andster
6+
author: andysterland
77
ms.author: andster
88
manager: jillfra
99
ms.workload:
@@ -91,11 +91,6 @@ This example has a `devinit.json`, which installs all the available devinit tool
9191
"input": "4.8.0",
9292
"comments": "Input specifies an explicit SDK version."
9393
},
94-
{
95-
"tool": "require-gitsubmodule",
96-
"input": "RepoThatHasDotGitModulesFile",
97-
"comments": "Input specifies a folder that contains a .gitmodules file. If no input is specified, then current directory is used."
98-
},
9994
{
10095
"tool": "require-mssql",
10196
"input": "install",

docs/devinit/sample-dotnet-runtime.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: .NET Core Runtime
33
description: Example customization using devinit for the dotnet/runtime repo.
44
ms.date: 08/28/2020
55
ms.topic: reference
6-
author: andster
6+
author: andysterland
77
ms.author: andster
88
manager: jillfra
99
ms.workload:
@@ -20,7 +20,7 @@ This example illustrates how to customize the .NET Core Runtime [dotnet/runtime]
2020

2121
This script is called from _PostCloneSetup.ps1_ and can also be run locally to set up the repository. This file needs to be in the same folder as _.devcontainer.json_.
2222

23-
```batch
23+
```console
2424
devinit init
2525
git config --system core.longpaths true
2626
```

docs/devinit/sample-eshoponweb.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: eShopOnWeb
33
description: Example customization using devinit for the dotnet-architecture/eShopOnWeb repo.
44
ms.date: 08/28/2020
55
ms.topic: reference
6-
author: andster
6+
author: andysterland
77
ms.author: andster
88
manager: jillfra
99
ms.workload:
@@ -20,7 +20,7 @@ This example illustrates how to customize the dotnet architecture example [eShop
2020

2121
This script is called from _PostCloneSetup.ps1_ and can also be ran locally to set up the repository. This file needs to be in the same folder as _.devcontainer.json_.
2222

23-
```batch
23+
```console
2424
devinit init
2525
dotnet ef database update -c catalogcontext -p src\Infrastructure\Infrastructure.csproj -s src\Web\Web.csproj
2626
dotnet ef database update -c appidentitydbcontext -p src\Infrastructure\Infrastructure.csproj -s src\Web\Web.csproj

docs/devinit/sample-opencv.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: OpenCV
33
description: Example customization using devinit for the opencv/opencv repo.
44
ms.date: 08/28/2020
55
ms.topic: reference
6-
author: andster
6+
author: andysterland
77
ms.author: andster
88
manager: jillfra
99
ms.workload:

docs/devinit/sample-private-preview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Private Preview
33
description: Example customizations used in the GitHub Codespaces Visual Studio preview beta repo.
44
ms.date: 08/28/2020
55
ms.topic: reference
6-
author: andster
6+
author: andysterland
77
ms.author: andster
88
manager: jillfra
99
ms.workload:

docs/devinit/sample-readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Sample List
33
description: List of example repo customizations using devinit.
44
ms.date: 08/28/2020
55
ms.topic: reference
6-
author: andster
6+
author: andysterland
77
ms.author: andster
88
manager: jillfra
99
ms.workload:

docs/devinit/toc.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@
3939
href: tool-require-dotnetcoresdk.md
4040
- name: require-dotnetframeworksdk
4141
href: tool-require-dotnetframeworksdk.md
42-
- name: require-gitsubmodule
43-
href: tool-require-gitsubmodule.md
4442
- name: require-mssql
4543
href: tool-require-mssql.md
4644
- name: require-nodejs

docs/devinit/tool-azurecli-login.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: azurecli-login
33
description: devinit tool azurecli-login.
44
ms.date: 08/28/2020
55
ms.topic: reference
6-
author: andster
6+
author: andysterland
77
ms.author: andster
88
manager: jillfra
99
ms.workload:

docs/devinit/tool-choco-install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: choco-install
33
description: devinit tool choco-install to install Chocolatey packages.
44
ms.date: 08/28/2020
55
ms.topic: reference
6-
author: andster
6+
author: andysterland
77
ms.author: andster
88
manager: jillfra
99
ms.workload:

docs/devinit/tool-choco-upgrade.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: choco-upgrade
33
description: devinit tool choco-upgrade.
44
ms.date: 08/28/2020
55
ms.topic: reference
6-
author: andster
6+
author: andysterland
77
ms.author: andster
88
manager: jillfra
99
ms.workload:

docs/devinit/tool-dotnet-restore.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: dotnet-restore
33
description: devinit tool dotnet-restore.
44
ms.date: 08/28/2020
55
ms.topic: reference
6-
author: andster
6+
author: andysterland
77
ms.author: andster
88
manager: jillfra
99
ms.workload:

docs/devinit/tool-dotnet-toolinstall.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: dotnet-toolinstall
33
description: devinit tool dotnet-toolinstall.
44
ms.date: 08/28/2020
55
ms.topic: reference
6-
author: andster
6+
author: andysterland
77
ms.author: andster
88
manager: jillfra
99
ms.workload:

docs/devinit/tool-npm-install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: npm-install
33
description: devinit tool npm-install.
44
ms.date: 08/28/2020
55
ms.topic: reference
6-
author: andster
6+
author: andysterland
77
ms.author: andster
88
manager: jillfra
99
ms.workload:

docs/devinit/tool-nuget-restore.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: nuget-restore
33
description: devinit tool nuget-restore.
44
ms.date: 08/28/2020
55
ms.topic: reference
6-
author: andster
6+
author: andysterland
77
ms.author: andster
88
manager: jillfra
99
ms.workload:

docs/devinit/tool-require-azureartifactscredentialprovider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: require-azureartifactscredentialprovider
33
description: devinit tool require-azureartifactscredentialprovider.
44
ms.date: 08/28/2020
55
ms.topic: reference
6-
author: andster
6+
author: andysterland
77
ms.author: andster
88
manager: jillfra
99
ms.workload:

docs/devinit/tool-require-azurecli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: require-azurecli
33
description: devinit tool require-azurecli.
44
ms.date: 08/28/2020
55
ms.topic: reference
6-
author: andster
6+
author: andysterland
77
ms.author: andster
88
manager: jillfra
99
ms.workload:

docs/devinit/tool-require-choco.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: require-choco
33
description: devinit tool require-choco.
44
ms.date: 08/28/2020
55
ms.topic: reference
6-
author: andster
6+
author: andysterland
77
ms.author: andster
88
manager: jillfra
99
ms.workload:

docs/devinit/tool-require-dotnetcoresdk.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: require-dotnetcoresdk
33
description: devinit tool require-dotnetcoresdk.
44
ms.date: 08/28/2020
55
ms.topic: reference
6-
author: andster
6+
author: andysterland
77
ms.author: andster
88
manager: jillfra
99
ms.workload:
@@ -64,7 +64,7 @@ The Default behavior of the `require-dotnetcoresdk` tool is to install the versi
6464
{
6565
"comments": "Example that will install in a specific directory.",
6666
"tool": "require-dotnetcoresdk",
67-
"additionalOptions": "-InstallDir \"C:\Program Files\dotnet\""
67+
"additionalOptions": "-InstallDir \"C:\\Program Files\\dotnet\""
6868
}
6969
]
7070
}

docs/devinit/tool-require-dotnetframeworksdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: require-dotnetframeworksdk
33
description: devinit tool require-dotnetframeworksdk.
44
ms.date: 08/28/2020
55
ms.topic: reference
6-
author: andster
6+
author: andysterland
77
ms.author: andster
88
manager: jillfra
99
ms.workload:

0 commit comments

Comments
 (0)