Skip to content

Commit 6fd17c3

Browse files
authored
Merge pull request #211190 from mumian/0914-vscode-menu
vscode menu change
2 parents 2d384a8 + 57f0242 commit 6fd17c3

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed
19.6 KB
Loading
3.03 KB
Loading

articles/azure-resource-manager/bicep/visual-studio-code.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Create Bicep files by using Visual Studio Code
33
description: Describes how to create Bicep files by using Visual Studio Code
44
ms.topic: conceptual
5-
ms.date: 06/30/2022
5+
ms.date: 09/14/2022
66
---
77

88
# Create Bicep files by using Visual Studio Code
@@ -23,26 +23,26 @@ Open or create a Bicep file in VS Code, select the **View** menu and then select
2323

2424
These commands include:
2525

26-
- [Build Bicep File](#build-bicep-file)
26+
- [Build ARM Template](#build-arm-template)
2727
- [Create Bicep Configuration File](#create-bicep-configuration-file)
2828
- [Deploy Bicep File](#deploy-bicep-file)
2929
- [Generate Parameters File](#generate-parameters-file)
3030
- [Insert Resource](#insert-resource)
3131
- [Open Bicep Visualizer](#open-bicep-visualizer)
3232
- [Open Bicep Visualizer to the side](#open-bicep-visualizer)
33-
- [Restore Bicep File (Force)](#restore-bicep-file)
33+
- [Restore Bicep Modules (Force)](#restore-bicep-modules)
3434

3535
These commands are also shown in the context menu when you right-click a Bicep file:
3636

3737
:::image type="content" source="./media/visual-studio-code/visual-studio-code-bicep-context-menu.png" alt-text="Screenshot of Visual Studio Code Bicep commands in the context menu.":::
3838

39-
### Build Bicep file
39+
### Build ARM template
4040

4141
The `build` command converts a Bicep file to an Azure Resource Manager template (ARM template). The new JSON template is stored in the same folder with the same file name. If a file with the same file name exists, it overwrites the old file. For more information, see [Bicep CLI commands](./bicep-cli.md#bicep-cli-commands).
4242

4343
### Create Bicep configuration file
4444

45-
The [Bicep configuration file (bicepconfig.json)](./bicep-config.md) can be used to customize your Bicep development experience. You can add `bicepconfig.json` in multiple directories. The configuration file closest to the bicep file in the directory hierarchy is used. When you select this command, the extension opens a dialog for you to select a folder. The default folder is where you store the Bicep file. If a `bicepconfig.json` file already exists in the folder, you have the option to overwrite the existing file.
45+
The [Bicep configuration file (bicepconfig.json)](./bicep-config.md) can be used to customize your Bicep development experience. You can add `bicepconfig.json` in multiple directories. The configuration file closest to the bicep file in the directory hierarchy is used. When you select this command, the extension opens a dialog for you to select a folder. The default folder is where you store the Bicep file. If a `bicepconfig.json` file already exists in the folder, you can overwrite the existing file.
4646

4747
### Deploy Bicep file
4848

@@ -82,15 +82,15 @@ The visualizer shows the resources defined in the Bicep file with the resource d
8282

8383
[![Visual Studio Code Bicep visualizer](./media/visual-studio-code/visual-studio-code-bicep-visualizer.png)](./media/visual-studio-code/visual-studio-code-bicep-visualizer-expanded.png#lightbox)
8484

85-
You have the option to open the visualizer side-by-side with the Bicep file.
85+
You can also open the visualizer side-by-side with the Bicep file.
8686

87-
### Restore Bicep file
87+
### Restore Bicep modules
8888

8989
When your Bicep file uses modules that are published to a registry, the restore command gets copies of all the required modules from the registry. It stores those copies in a local cache. For more information, see [restore](./bicep-cli.md#restore).
9090

9191
## View type document
9292

93-
From Visual Studio Code, you can easily open the template reference for the resource type you are working on. To do so, hover your cursor over the resource symbolic name, and then select **View type document**.
93+
From Visual Studio Code, you can easily open the template reference for the resource type you're working on. To do so, hover your cursor over the resource symbolic name, and then select **View type document**.
9494

9595
:::image type="content" source="./media/visual-studio-code/visual-studio-code-bicep-view-type-document.png" alt-text="Screenshot of Visual Studio Code Bicep view type document.":::
9696

0 commit comments

Comments
 (0)