Skip to content

Commit

Permalink
[ResourceManager] Local extensions overrides (#47366)
Browse files Browse the repository at this point in the history
The focus of these changes is to fix the project reference CI leg which is
failing due to in-process work to bump extension package dependencies.  These
packages are being bumped locally to force transitive dependencies to play nice
while we work on the central updates.
  • Loading branch information
jsquire authored Nov 28, 2024
1 parent 50ecf57 commit 7ed2d42
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -7,7 +7,14 @@

<ItemGroup>
<PackageReference Include="Azure.Identity" />
<PackageReference Include="Microsoft.Extensions.Azure" />

<!-- TEMP: Override until central version is bumped to mitigate project reference CI error -->
<PackageReference Include="Microsoft.Extensions.Azure" VersionOverride="1.9.0" />

<!-- TEMP: Overrides until central packages bumped, needed for new extensions -->
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" VersionOverride="8.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" VersionOverride="8.0.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" VersionOverride="8.0.2" />
</ItemGroup>

<ItemGroup>

0 comments on commit 7ed2d42

Please sign in to comment.