Skip to content

Commit e8b14a2

Browse files
authored
Merge pull request #99308 from roel4ez/patch-1
fix: replace deprecated usages of iotedgedev init
2 parents 3abfdbd + feb2d38 commit e8b14a2

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/iot-edge/how-to-vs-code-develop-module.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -125,49 +125,49 @@ The [IoT Edge Dev Tool](https://github.com/Azure/iotedgedev) simplifies Azure Io
125125
mkdir c:\dev\iotedgesolution
126126
```
127127
128-
1. Use the **iotedgedev init** command to create a solution and set up your Azure IoT Hub. Use the following command to create an IoT Edge solution for a specified development language.
128+
1. Use the **iotedgedev solution init** command to create a solution and set up your Azure IoT Hub. Use the following command to create an IoT Edge solution for a specified development language.
129129
130130
# [C](#tab/c)
131131
132132
```bash
133-
iotedgedev init --template c
133+
iotedgedev solution init --template c
134134
```
135135
136136
# [C\#](#tab/csharp)
137137
138138
```bash
139-
iotedgedev init --template csharp
139+
iotedgedev solution init --template csharp
140140
```
141141
142142
The solution includes a default C# module named *filtermodule*.
143143
144144
# [Azure Functions](#tab/azfunctions)
145145
146146
```bash
147-
iotedgedev init --template csharpfunction
147+
iotedgedev solution init --template csharpfunction
148148
```
149149
150150
# [Java](#tab/java)
151151
152152
```bash
153-
iotedgedev init --template java
153+
iotedgedev solution init --template java
154154
```
155155
156156
# [Node.js](#tab/node)
157157
158158
```bash
159-
iotedgedev init --template nodejs
159+
iotedgedev solution init --template nodejs
160160
```
161161
162162
# [Python](#tab/python)
163163
164164
```bash
165-
iotedgedev init --template python
165+
iotedgedev solution init --template python
166166
```
167167
168168
---
169169
170-
The *iotedgedev init* script prompts you to complete several steps including:
170+
The *iotedgedev solution init* script prompts you to complete several steps including:
171171
172172
* Authenticate to Azure
173173
* Choose an Azure subscription

0 commit comments

Comments
 (0)