Skip to content

Commit c5b0bdb

Browse files
authored
fix: replace deprecated usages of iotedgedev
The command `iotedgedev init` is listed as deprecated in the iotedgedev tool. The recommend usage is `iotedgedev solution init`.
1 parent 3af782b commit c5b0bdb

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -125,44 +125,44 @@ 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
---

0 commit comments

Comments
 (0)