Skip to content
This repository was archived by the owner on Aug 3, 2024. It is now read-only.

Commit 6e7b563

Browse files
authored
[SB] Fix assembly warnings caused by version mismatch (#382)
1 parent 5b2b280 commit 6e7b563

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

src/NuGet.Services.KeyVault/NuGet.Services.KeyVault.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<Version>3.0.5</Version>
1111
</PackageReference>
1212
<PackageReference Include="Microsoft.Azure.Services.AppAuthentication">
13-
<Version>1.3.1</Version>
13+
<Version>1.4.0</Version>
1414
</PackageReference>
1515
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions">
1616
<Version>2.2.0</Version>

src/NuGet.Services.ServiceBus/NuGet.Services.ServiceBus.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9+
<!--Microsoft.Azure.Services.AppAuthentication is a transitive dependency from the WindowsAzure.ServiceBus and it has a bug:
10+
it references 1.0.3 package dependency but 1.4.0 as the referenced assembly. This causes all the upstream projects give a
11+
warning for assembly conflicts. Add this reference to fix these warnings-->
12+
<PackageReference Include="Microsoft.Azure.Services.AppAuthentication" Version="1.4.0" />
913
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions">
1014
<Version>2.2.0</Version>
1115
</PackageReference>

0 commit comments

Comments
 (0)