Skip to content

Commit 2a97dd0

Browse files
authored
SDK release on 2024-03-28 with update to Dotnetty 0.7.6 (#3447)
1 parent df0634b commit 2a97dd0

File tree

30 files changed

+74
-128
lines changed

30 files changed

+74
-128
lines changed

e2e/test/E2ETests.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">net6.0;net7.0;net472</TargetFrameworks>
4-
<TargetFrameworks Condition="'$(OS)' != 'Windows_NT'">net6.0;net7.0</TargetFrameworks>
3+
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">net6.0;net8.0;net472</TargetFrameworks>
4+
<TargetFrameworks Condition="'$(OS)' != 'Windows_NT'">net6.0;net8.0</TargetFrameworks>
55
<!-- By setting this as not a test project for other frameworks, we can run "dotnet test" for a specific framework from the root directory without dotnet throwing if any test project in the solution doesn't support that framework -->
6-
<IsTestProject Condition="'$(OS)' != 'Windows_NT' And '$(TargetFramework)' != 'net6.0' And '$(TargetFramework)' != 'net7.0'">False</IsTestProject>
6+
<IsTestProject Condition="'$(OS)' != 'Windows_NT' And '$(TargetFramework)' != 'net6.0' And '$(TargetFramework)' != 'net8.0'">False</IsTestProject>
77
<LangVersion>9.0</LangVersion>
88
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
99
<IsPackable>false</IsPackable>
@@ -34,7 +34,7 @@
3434
<!-- All Platforms -->
3535
<ItemGroup>
3636
<PackageReference Include="FluentAssertions" Version="5.10.0" />
37-
<PackageReference Include="Microsoft.IdentityModel.Clients.ActiveDirectory" Version="5.2.0" />
37+
<PackageReference Include="Microsoft.IdentityModel.Clients.ActiveDirectory" Version="5.3.0" />
3838
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
3939
<PackageReference Include="MSTest.TestAdapter" Version="2.0.0" />
4040
<PackageReference Include="MSTest.TestFramework" Version="2.0.0" />

iothub/device/samples/getting started/FileUploadSample/FileUploadSample.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
<PackageReference Include="Azure.Storage.Blobs" Version="12.19.1" />
1111
<PackageReference Include="CommandLineParser" Version="2.9.1" />
1212
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
13-
14-
<!-- Working around a bug between DotNetty and .NET 5.0+ by specifying the exact version of DotNetty.Common that has the fix -->
15-
<PackageReference Include="DotNetty.Common" Version="0.7.5" />
1613
</ItemGroup>
1714

1815
<ItemGroup>

iothub/device/samples/getting started/MessageReceiveSample/MessageReceiveSample.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
<ItemGroup>
1010
<PackageReference Include="CommandLineParser" Version="2.9.1" />
1111
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
12-
13-
<!-- Working around a bug between DotNetty and .NET 5.0+ by specifying the exact version of DotNetty.Common that has the fix -->
14-
<PackageReference Include="DotNetty.Common" Version="0.7.5" />
1512
</ItemGroup>
1613

1714
<ItemGroup Condition="'$(Configuration)' == 'Release'">

iothub/device/samples/getting started/MethodSample/MethodSample.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
<ItemGroup>
1010
<PackageReference Include="CommandLineParser" Version="2.9.1" />
1111
<PackageReference Include="System.Text.Json" Version="6.0.5" />
12-
13-
<!-- Working around a bug between DotNetty and .NET 5.0+ by specifying the exact version of DotNetty.Common that has the fix -->
14-
<PackageReference Include="DotNetty.Common" Version="0.7.5" />
1512
</ItemGroup>
1613

1714
<ItemGroup Condition="'$(Configuration)' == 'Release'">

iothub/device/samples/getting started/TwinSample/TwinSample.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88

99
<ItemGroup>
1010
<PackageReference Include="CommandLineParser" Version="2.9.1" />
11-
12-
<!-- Working around a bug between DotNetty and .NET 5.0+ by specifying the exact version of DotNetty.Common that has the fix -->
13-
<PackageReference Include="DotNetty.Common" Version="0.7.5" />
1411
</ItemGroup>
1512

1613
<ItemGroup Condition="'$(Configuration)' == 'Release'">

iothub/device/samples/how to guides/DeviceReconnectionSample/DeviceReconnectionSample.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
<ItemGroup>
1111
<PackageReference Include="CommandLineParser" Version="2.9.1" />
1212
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
13-
14-
<!-- Working around a bug between DotNetty and .NET 5.0+ by specifying the exact version of DotNetty.Common that has the fix -->
15-
<PackageReference Include="DotNetty.Common" Version="0.7.5" />
1613
</ItemGroup>
1714

1815
<ItemGroup Condition="'$(Configuration)' == 'Release'">

iothub/device/samples/how to guides/X509DeviceCertWithChainSample/X509DeviceCertWithChainSample.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88

99
<ItemGroup>
1010
<PackageReference Include="CommandLineParser" Version="2.9.1" />
11-
12-
<!-- Working around a bug between DotNetty and .NET 5.0+ by specifying the exact version of DotNetty.Common that has the fix -->
13-
<PackageReference Include="DotNetty.Common" Version="0.7.5" />
1411
</ItemGroup>
1512

1613
<ItemGroup Condition="'$(Configuration)' == 'Release'">

iothub/device/samples/solutions/PnpDeviceSamples/PnpConvention/PnpHelpers.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.0" />
1313
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
1414
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
15-
16-
<!-- Working around a bug between DotNetty and .NET 5.0+ by specifying the exact version of DotNetty.Common that has the fix -->
17-
<PackageReference Include="DotNetty.Common" Version="0.7.5" />
1815
</ItemGroup>
1916

2017
<ItemGroup Condition="'$(Configuration)' == 'Release'">

iothub/device/samples/solutions/PnpDeviceSamples/TemperatureController/TemperatureController.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
<ItemGroup>
1111
<PackageReference Include="CommandLineParser" Version="2.9.1" />
1212
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="6.0.0" />
13-
14-
<!-- Working around a bug between DotNetty and .NET 5.0+ by specifying the exact version of DotNetty.Common that has the fix -->
15-
<PackageReference Include="DotNetty.Common" Version="0.7.5" />
1613
</ItemGroup>
1714

1815
<ItemGroup Condition="'$(Configuration)' == 'Release'">

iothub/device/samples/solutions/PnpDeviceSamples/Thermostat/Thermostat.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111
<ItemGroup>
1212
<PackageReference Include="CommandLineParser" Version="2.9.1" />
1313
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="6.0.0" />
14-
15-
<!-- Working around a bug between DotNetty and .NET 5.0+ by specifying the exact version of DotNetty.Common that has the fix -->
16-
<PackageReference Include="DotNetty.Common" Version="0.7.5" />
1714
</ItemGroup>
1815

1916
<ItemGroup Condition="'$(Configuration)' == 'Release'">

0 commit comments

Comments
 (0)