Skip to content

Commit c36fdde

Browse files
authored
Merge pull request #126515 from changeworld/patch-31
Fix typo
2 parents 8bec688 + 96f5dfa commit c36fdde

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

articles/stream-analytics/migrate-to-vscode.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ ms.service: azure-stream-analytics
1010

1111
# How to Migrate ASA projects to Visual Studio Code
1212

13-
This article provides guidance for Visual Studio users migrating Azure Stream Analytics (ASA) projects to Visual Studio Code (VSCode). Please note that the ASA Tools extension for Visual Studio is no longer maintained. We recommend that you use the ASA tools extension in VSCode for local testing before you submit and start an ASA job.
13+
This article provides guidance for Visual Studio users migrating Azure Stream Analytics (ASA) projects to Visual Studio Code (VS Code). Please note that the ASA Tools extension for Visual Studio is no longer maintained. We recommend that you use the ASA tools extension in VS Code for local testing before you submit and start an ASA job.
1414

1515
If you have a local ASA project in Visual Studio, follow [these steps](#faqs) to submit your ASA project to Azure portal.
1616

17-
## Install VSCode and ASA Tools extension
17+
## Install VS Code and ASA Tools extension
1818

1919
1. Install [Visual Studio Code](https://code.visualstudio.com/)
2020

@@ -31,38 +31,38 @@ If you have a local ASA project in Visual Studio, follow [these steps](#faqs) to
3131
5. When you're signed in, your Azure account name appears on the status bar in the lower-left corner of the Visual Studio Code window.
3232

3333

34-
## Export an ASA Job and open in VSCode
34+
## Export an ASA Job and open in VS Code
3535

36-
If you've created an ASA job in the Azure portal, you can export the ASA job to VSCode in your local machine. Two ways to export an ASA job:
36+
If you've created an ASA job in the Azure portal, you can export the ASA job to VS Code in your local machine. Two ways to export an ASA job:
3737

3838
### Option 1 – Export from the Azure portal
3939

4040
1. Sign in to Azure portal and open your ASA job. Under **Query** page, select **Open in VS Code** to export job.
4141

42-
:::image type="content" source="./media/stream-analytics-migrate-to-vscode/portal-open-in-vscode.png" alt-text="Screenshot of the Azure portal using the Open in VSCode to launch VSCode in the local machine." lightbox= "./media/stream-analytics-migrate-to-vscode/portal-open-in-vscode.png" :::
42+
:::image type="content" source="./media/stream-analytics-migrate-to-vscode/portal-open-in-vscode.png" alt-text="Screenshot of the Azure portal using the Open in VS Code to launch VS Code in the local machine." lightbox= "./media/stream-analytics-migrate-to-vscode/portal-open-in-vscode.png" :::
4343

4444
2. Select a folder where you want to export the ASA project.
45-
3. Then it will automatically create an ASA project and add it to your workspace in VSCode. You should see a folder with the same name as your ASA job.
45+
3. Then it will automatically create an ASA project and add it to your workspace in VS Code. You should see a folder with the same name as your ASA job.
4646

47-
![VSCode export ASA project](./media/stream-analytics-migrate-to-vscode/vscode-export-asa-project.jpg)
47+
![VS Code export ASA project](./media/stream-analytics-migrate-to-vscode/vscode-export-asa-project.jpg)
4848

4949
4. A Stream Analytics project consists of three folders: **Inputs**, **Outputs**, and **Functions**. It also has the query script **(\*.asaql)**, a **JobConfig.json** file, and an **asaproj.json** configuration file. If you have configured multiple Input and Output sources for the job, it will create JSON files for each source under the folders respectively.
5050

51-
![VSCode Inputs and Outputs folders](./media/stream-analytics-migrate-to-vscode/vscode-folders.jpg)
51+
![VS Code Inputs and Outputs folders](./media/stream-analytics-migrate-to-vscode/vscode-folders.jpg)
5252

53-
### Option 2 - Export an ASA job in VSCode
53+
### Option 2 - Export an ASA job in VS Code
5454

55-
1. Select the **Azure** icon on the VSCode activity bar. Find the **Subscription** where your ASA job is created, select **Export** to export the ASA job.
55+
1. Select the **Azure** icon on the VS Code activity bar. Find the **Subscription** where your ASA job is created, select **Export** to export the ASA job.
5656

57-
![Export an ASA job in VSCode](./media/stream-analytics-migrate-to-vscode/vscode-export-job.jpg)
57+
![Export an ASA job in VS Code](./media/stream-analytics-migrate-to-vscode/vscode-export-job.jpg)
5858

5959
2. Once the export is completed, you'll see an ASA project created in your workspace.
6060

61-
![ASA job in VSCode workspace](./media/stream-analytics-migrate-to-vscode/vscode-workspace.jpg)
61+
![ASA job in VS Code workspace](./media/stream-analytics-migrate-to-vscode/vscode-workspace.jpg)
6262

6363
3. If your ASA job has configured multiple input and output sources, it will create JSON files for each source under the **Inputs** and **Outputs** folders respectively.
6464

65-
## Run an ASA job in VSCode
65+
## Run an ASA job in VS Code
6666

6767
After an ASA job is exported, you can run your query on the local machine. For input, data can be ingested from local files or live sources. Output results are either sent as files to a local folder, or to the live sinks. For more detail, visit [Run jobs locally with VS Code](./visual-studio-code-local-run-all.md).
6868

@@ -85,7 +85,7 @@ For more details about debugging, visit [Debug ASA queries locally using job dia
8585

8686
## FAQs
8787

88-
### How to migrate a local ASA project from Visual Studio to VSCode?
88+
### How to migrate a local ASA project from Visual Studio to VS Code?
8989

9090
If you have a local ASA project in Visual Studio and not yet submitted, follow these steps to submit your ASA project to Azure.
9191

@@ -103,14 +103,14 @@ If you have a local ASA project in Visual Studio and not yet submitted, follow t
103103

104104
4. Then you can go to the Azure portal and find the ASA job under your **Resource Group**.
105105

106-
5. To learn how to export an ASA job in VSCode, see [here](#export-an-asa-job-and-open-in-vscode).
106+
5. To learn how to export an ASA job in VS Code, see [here](#export-an-asa-job-and-open-in-vscode).
107107

108108
### Do I need to configure the input and output sources after an ASA job is exported?
109109

110110
No, if your ASA job has configured multiple Inputs and Outputs sources in the Azure portal, it will create JSON files for each source under the folders respectively.
111111

112112

113-
### How to add a new input source in VSCode?
113+
### How to add a new input source in VS Code?
114114

115115
1. Right-click the Inputs folder in your Stream Analytics project. Then select **ASA: Add Input** from the context menu.
116116

0 commit comments

Comments
 (0)