Skip to content

Commit 3615269

Browse files
Add context path in module.json (#50)
* Update module.json * Use 1.* for Microsoft.Azure.Devices.Client
1 parent 3728af0 commit 3615269

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

content/dotnet-template-azure-iot-edge-module/CSharp/SampleModule.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</ItemGroup>
1515

1616
<ItemGroup>
17-
<PackageReference Include="Microsoft.Azure.Devices.Client" Version="1.18.0" />
17+
<PackageReference Include="Microsoft.Azure.Devices.Client" Version="1.*" />
1818
<PackageReference Include="Microsoft.Extensions.Configuration" Version="2.1.1" />
1919
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="2.1.1" />
2020
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="2.1.1" />

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"windows-amd64": "./Dockerfile.windows-amd64"
1313
}
1414
},
15-
"buildOptions": []
15+
"buildOptions": [],
16+
"contextPath": "./"
1617
},
1718
"language": "csharp"
18-
}
19+
}

0 commit comments

Comments
 (0)