Skip to content

Commit 6e639f3

Browse files
ryuyudrewgillies
andauthored
Additional config changes to support AccountDeleter migration (#10180) (#10189)
Add bindingredirect for dependencyinjection.dll Co-authored-by: Drew Gillies <[email protected]>
1 parent 58a3fb3 commit 6e639f3

2 files changed

Lines changed: 13 additions & 2 deletions

File tree

src/AccountDeleter/app.config

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<runtime>
4+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
5+
<dependentAssembly>
6+
<assemblyIdentity name="Microsoft.Extensions.DependencyInjection" publicKeyToken="adb9793829ddae60" culture="neutral" />
7+
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
8+
</dependentAssembly>
9+
</assemblyBinding>
10+
</runtime>
11+
</configuration>

src/NuGetGallery.Core/Services/CloudBlobClientWrapper.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) .NET Foundation. All rights reserved.
1+
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System;
@@ -278,4 +278,4 @@ private static ClientCertificateCredential GetCredentialUsingServicePrincipal(st
278278
return new ClientCertificateCredential(tenantId, appID, clientCert, new ClientCertificateCredentialOptions { AuthorityHost = new Uri(authorityHost), SendCertificateChain = true });
279279
}
280280
}
281-
}
281+
}

0 commit comments

Comments
 (0)