Skip to content

Commit 240b8d5

Browse files
Bump Azure.Storage.Blobs from 12.10.0 to 12.13.0 in /samples/AzureSDK/AzureEdgeOta/FindPeFiles (#234)
1 parent 155fd52 commit 240b8d5

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

samples/AzureSDK/AzureEdgeOta/AzureEdgeOTA.sln

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ EndProject
1111
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FindPeFiles", "FindPeFiles\FindPeFiles.csproj", "{FB5A2D69-0660-481E-929D-6109A72C28CB}"
1212
EndProject
1313
Global
14-
GlobalSection(SharedMSBuildProjectFiles) = preSolution
15-
OtaInterface\OtaInterface.projitems*{d836967a-a9ee-4a90-8af1-3dae5e3f64fe}*SharedItemsImports = 13
16-
OtaInterface\OtaInterface.projitems*{fb5a2d69-0660-481e-929d-6109a72c28cb}*SharedItemsImports = 5
17-
EndGlobalSection
1814
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1915
Debug|Any CPU = Debug|Any CPU
2016
Release|Any CPU = Release|Any CPU
@@ -34,11 +30,17 @@ Global
3430
{D5F674EE-F974-4E8D-ACA2-D15AEF662C74}.Release|Any CPU.Deploy.0 = Release|Any CPU
3531
{FB5A2D69-0660-481E-929D-6109A72C28CB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
3632
{FB5A2D69-0660-481E-929D-6109A72C28CB}.Debug|Any CPU.Build.0 = Debug|Any CPU
33+
{FB5A2D69-0660-481E-929D-6109A72C28CB}.Release|Any CPU.ActiveCfg = Release|Any CPU
34+
{FB5A2D69-0660-481E-929D-6109A72C28CB}.Release|Any CPU.Build.0 = Release|Any CPU
3735
EndGlobalSection
3836
GlobalSection(SolutionProperties) = preSolution
3937
HideSolutionNode = FALSE
4038
EndGlobalSection
4139
GlobalSection(ExtensibilityGlobals) = postSolution
4240
SolutionGuid = {C967FC56-9F2D-40AD-8B89-52B96DFD776B}
4341
EndGlobalSection
42+
GlobalSection(SharedMSBuildProjectFiles) = preSolution
43+
OtaInterface\OtaInterface.projitems*{d836967a-a9ee-4a90-8af1-3dae5e3f64fe}*SharedItemsImports = 13
44+
OtaInterface\OtaInterface.projitems*{fb5a2d69-0660-481e-929d-6109a72c28cb}*SharedItemsImports = 5
45+
EndGlobalSection
4446
EndGlobal

samples/AzureSDK/AzureEdgeOta/AzureEdgeOTAEngine/AzureEdgeOTAEngine.nfproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
<ItemGroup>
4242
<Reference Include="mscorlib, Version=1.12.0.4, Culture=neutral, PublicKeyToken=c07d481e9758c731">
4343
<HintPath>..\packages\nanoFramework.CoreLibrary.1.12.0\lib\mscorlib.dll</HintPath>
44-
<Private>True</Private>
4544
</Reference>
4645
<Reference Include="nanoFramework.Azure.Devices.Client, Version=1.1.19.30021, Culture=neutral, PublicKeyToken=c07d481e9758c731">
4746
<HintPath>..\packages\nanoFramework.Azure.Devices.Client.1.1.19\lib\nanoFramework.Azure.Devices.Client.dll</HintPath>

samples/AzureSDK/AzureEdgeOta/AzureEdgeOTAEngine/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
}
103103

104104
// Subscribe to the twin change
105-
azure.TwinUpated += TwinUpdated;
105+
azure.TwinUpdated += TwinUpdated;
106106
}
107107
catch (Exception ex)
108108
{

samples/AzureSDK/AzureEdgeOta/FindPeFiles/FindPeFiles.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="Azure.Storage.Blobs" Version="12.10.0" />
12+
<PackageReference Include="Azure.Storage.Blobs" Version="12.13.0" />
1313
<PackageReference Include="CommandLineParser" Version="2.8.0" />
1414
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
1515
</ItemGroup>

samples/AzureSDK/AzureIoTPnP/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
// Create and Azure IoT connection
2525
// You will find the model here: https://github.com/Azure/iot-plugandplay-models/blob/main/dtmi/com/example/thermostat-1.json
2626
DeviceClient azureIoT = new DeviceClient(Secrets.IotHub, Secrets.DeviceName, Secrets.SasKey, azureCert: new X509Certificate(Resource.GetBytes(Resource.BinaryResources.AzureRoot)), modelId: "dtmi:com:example:Thermostat;1");
27-
azureIoT.TwinUpated += AzureTwinUpdated;
27+
azureIoT.TwinUpdated += AzureTwinUpdated;
2828
azureIoT.AddMethodCallback(getMaxMinReport);
2929

3030
if (!azureIoT.Open())

samples/AzureSDK/AzureSDK/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
{
4343
if (!ConnectToWifi()) return;
4444

45-
azureIoT.TwinUpated += TwinUpdatedEvent;
45+
azureIoT.TwinUpdated += TwinUpdatedEvent;
4646
azureIoT.StatusUpdated += StatusUpdatedEvent;
4747
azureIoT.CloudToDeviceMessage += CloudToDeviceMessageEvent;
4848
azureIoT.AddMethodCallback(MethodCalbackTest);

0 commit comments

Comments
 (0)