Skip to content
Closed
Prev Previous commit
Next Next commit
Rolling back Microsoft.AspNetCore.Http to unsupported version due to …
…Functions dependencies conflict.
  • Loading branch information
jsquire committed Dec 11, 2024
commit 683e0670da0514a0dda1850308fca526b4f2b629
6 changes: 3 additions & 3 deletions eng/Packages.Data.props
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@
<!-- Packages intended for Extensions libraries only -->
<ItemGroup Condition="'$(IsExtensionClientLibrary)' == 'true'">
<PackageReference Update="Microsoft.AspNetCore.DataProtection" Version="8.0.11" />
<PackageReference Update="Microsoft.AspNetCore.Http" Version="2.1.34" />
<PackageReference Update="Microsoft.AspNetCore.Http" Version="2.2.2" /> <!-- End of life. Cannot use latest supported (2.1.34) due to Functions dependencies -->
<PackageReference Update="Microsoft.AspNetCore.Http.Connections" Version="1.0.15" />
<PackageReference Update="Microsoft.Azure.Functions.Extensions" Version="1.1.0" />
<PackageReference Update="Microsoft.Azure.Functions.Worker.Extensions.Abstractions" Version="1.3.0" />
Expand Down Expand Up @@ -309,7 +309,7 @@
<PackageReference Update="Microsoft.AspNetCore.Server.Kestrel.Core" Version="2.1.25" />
<PackageReference Update="Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets" Version="2.1.40" />
<PackageReference Update="Microsoft.AspNetCore.Server.WebListener" Version="1.1.4" /> <!-- End of life, used only by Batch -->
<PackageReference Update="Microsoft.AspNetCore.Http" Version="2.1.34" />
<PackageReference Update="Microsoft.AspNetCore.Http" Version="2.2.2" /> <!-- End of life. Cannot use latest supported (2.1.34) due to Functions dependencies -->
<PackageReference Update="Microsoft.Azure.Core.Spatial" Version="1.0.0" />
<PackageReference Update="Microsoft.Azure.Core.NewtonsoftJson" Version="1.0.0" />
<PackageReference Update="Microsoft.Azure.Devices" Version="1.38.2" />
Expand Down Expand Up @@ -350,7 +350,7 @@
<PackageReference Update="Microsoft.Extensions.PlatformAbstractions" Version="1.1.0" />
<PackageReference Update="Microsoft.Graph" Version="5.57.0" />
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="17.0.0" />
<PackageReference Update="Microsoft.NET.Sdk.Functions" Version="4.2.0" />
<PackageReference Update="Microsoft.NET.Sdk.Functions" Version="4.6.0" />
<PackageReference Update="Microsoft.Rest.ClientRuntime" Version="[2.3.24, 3.0.0)" />
<PackageReference Update="Microsoft.Rest.ClientRuntime.Azure.Authentication" Version="[2.4.1]" />
<PackageReference Update="Microsoft.Rest.ClientRuntime.Azure.TestFramework" Version="[1.7.7, 2.0.0)" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RequiredTargetFrameworks>net6.0</RequiredTargetFrameworks>
<RequiredTargetFrameworks>net8.0</RequiredTargetFrameworks>
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
<AzureFunctionsVersion>v3</AzureFunctionsVersion>
</PropertyGroup>
Expand Down