Skip to content

Commit

Permalink
Merged PR 849881: Updated moduleSDK to preview-008
Browse files Browse the repository at this point in the history
Updated moduleSDK to preview-008
  • Loading branch information
ancaantochi committed May 22, 2018
1 parent ed42d70 commit 5795ec8
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Devices" Version="1.16.0-preview-003" />
<PackageReference Include="Microsoft.Azure.Devices.Client" Version="1.17.0-preview-007" />
<PackageReference Include="Microsoft.Azure.Devices.Client" Version="1.17.0-preview-008" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="11.1.0" />
<PackageReference Include="Microsoft.Azure.Devices.Client" Version="1.17.0-preview-007" />
<PackageReference Include="Microsoft.Azure.Devices.Client" Version="1.17.0-preview-008" />
<PackageReference Include="System.ValueTuple" Version="4.4.0" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class ClientProviderTest
const string IotHubHostName = "iothub.test";
const string DeviceId = "device1";
const string ModuleId = "module1";
const string IotEdgedUriVariableName = "IOTEDGE_IOTEDGEDURI";
const string IotEdgedUriVariableName = "IOTEDGE_WORKLOADURI";
const string IotHubHostnameVariableName = "IOTEDGE_IOTHUBHOSTNAME";
const string GatewayHostnameVariableName = "IOTEDGE_GATEWAYHOSTNAME";
const string DeviceIdVariableName = "IOTEDGE_DEVICEID";
Expand Down Expand Up @@ -95,7 +95,7 @@ public void Test_Create_ModuleIdentity_WithConnectionString_ShouldCreateModuleCl
[Fact]
public void Test_Create_ModuleIdentity_WithEnv_ShouldCreateModuleClient()
{
Environment.SetEnvironmentVariable(IotEdgedUriVariableName, "localhost");
Environment.SetEnvironmentVariable(IotEdgedUriVariableName, "http://localhost:8081");
Environment.SetEnvironmentVariable(IotHubHostnameVariableName, "iothub.test");
Environment.SetEnvironmentVariable(GatewayHostnameVariableName, "localhost");
Environment.SetEnvironmentVariable(DeviceIdVariableName, "device1");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Azure.Devices.Client" Version="1.17.0-preview-007" />
<PackageReference Include="Microsoft.Azure.Devices.Client" Version="1.17.0-preview-008" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="2.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="2.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="2.0.0" />
Expand Down
2 changes: 1 addition & 1 deletion edge-modules/TemperatureFilter/TemperatureFilter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Azure.Devices.Client" Version="1.17.0-preview-007" />
<PackageReference Include="Microsoft.Azure.Devices.Client" Version="1.17.0-preview-008" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="2.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="2.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="2.0.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Azure.Devices.Client" Version="1.17.0-preview-007" />
<PackageReference Include="Microsoft.Azure.Devices.Client" Version="1.17.0-preview-008" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions" Version="3.0.0-beta3" />
</ItemGroup>

Expand Down

0 comments on commit 5795ec8

Please sign in to comment.