Skip to content

Commit 245ee22

Browse files
author
Qingqing Sun
committed
upgrade device sdk, make all architecture default true
1 parent 11d82d1 commit 245ee22

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

content/dotnet-template-azure-iot-edge-module/CSharp/.template.config/template.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
"windows-nano": {
3333
"type": "parameter",
3434
"datatype": "bool",
35+
"defaultValue": "true"
3536
}
3637
},
3738
"sources": [

content/dotnet-template-azure-iot-edge-module/CSharp/Docker/windows-nano/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ WORKDIR /app
66

77
COPY $EXE_DIR/ ./
88

9-
CMD ["dotnet", ".dll"]
9+
CMD ["dotnet", "SampleModule.dll"]

content/dotnet-template-azure-iot-edge-module/CSharp/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ static async Task InitEdgeModule()
4343
try
4444
{
4545
// Open a connection to the Edge runtime using MQTT transport and
46-
// the connection string provded as an environment variable
46+
// the connection string provided as an environment variable
4747
ITransportSettings[] settings =
4848
{
4949
new MqttTransportSettings(TransportType.Mqtt_Tcp_Only)

0 commit comments

Comments
 (0)