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

Commit 5295c6e

Browse files
authored
Move from ADAL to MSAL (#415)
* Move from ADAL to MSAL This removes the deprecated Microsoft.IdentityModel.Clients.ActiveDirectory and replaces it with Microsoft.Identity.Client. The AzureManagement library is no longer used so it was removed instead of ported to MSAL. * Remove AzureManagement references
1 parent b4bce36 commit 5295c6e

21 files changed

Lines changed: 32 additions & 688 deletions

NuGet.Server.Common.sln

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NuGet.Services.Owin", "src\
3636
EndProject
3737
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NuGet.Services.Owin.Tests", "tests\NuGet.Services.Owin.Tests\NuGet.Services.Owin.Tests.csproj", "{037B35D5-05A7-4333-AA91-B8002068B0B2}"
3838
EndProject
39-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NuGet.Services.AzureManagement", "src\NuGet.Services.AzureManagement\NuGet.Services.AzureManagement.csproj", "{66CCFC9E-DA43-4DAB-9746-92B51AAC5F29}"
40-
EndProject
41-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NuGet.Services.AzureManagement.Tests", "tests\NuGet.Services.AzureManagement.Tests\NuGet.Services.AzureManagement.Tests.csproj", "{46261109-F6F7-4353-BD4E-171AEED198F3}"
42-
EndProject
4339
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NuGet.Services.ServiceBus", "src\NuGet.Services.ServiceBus\NuGet.Services.ServiceBus.csproj", "{9337000B-EA3B-40BE-9A33-38BC28DFD0CB}"
4440
EndProject
4541
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NuGet.Services.Contracts", "src\NuGet.Services.Contracts\NuGet.Services.Contracts.csproj", "{6674B4B4-2D0E-4840-8CF0-2356ACDE8863}"
@@ -146,14 +142,6 @@ Global
146142
{037B35D5-05A7-4333-AA91-B8002068B0B2}.Debug|Any CPU.Build.0 = Debug|Any CPU
147143
{037B35D5-05A7-4333-AA91-B8002068B0B2}.Release|Any CPU.ActiveCfg = Release|Any CPU
148144
{037B35D5-05A7-4333-AA91-B8002068B0B2}.Release|Any CPU.Build.0 = Release|Any CPU
149-
{66CCFC9E-DA43-4DAB-9746-92B51AAC5F29}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
150-
{66CCFC9E-DA43-4DAB-9746-92B51AAC5F29}.Debug|Any CPU.Build.0 = Debug|Any CPU
151-
{66CCFC9E-DA43-4DAB-9746-92B51AAC5F29}.Release|Any CPU.ActiveCfg = Release|Any CPU
152-
{66CCFC9E-DA43-4DAB-9746-92B51AAC5F29}.Release|Any CPU.Build.0 = Release|Any CPU
153-
{46261109-F6F7-4353-BD4E-171AEED198F3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
154-
{46261109-F6F7-4353-BD4E-171AEED198F3}.Debug|Any CPU.Build.0 = Debug|Any CPU
155-
{46261109-F6F7-4353-BD4E-171AEED198F3}.Release|Any CPU.ActiveCfg = Release|Any CPU
156-
{46261109-F6F7-4353-BD4E-171AEED198F3}.Release|Any CPU.Build.0 = Release|Any CPU
157145
{9337000B-EA3B-40BE-9A33-38BC28DFD0CB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
158146
{9337000B-EA3B-40BE-9A33-38BC28DFD0CB}.Debug|Any CPU.Build.0 = Debug|Any CPU
159147
{9337000B-EA3B-40BE-9A33-38BC28DFD0CB}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -278,8 +266,6 @@ Global
278266
{EDB53299-EDC5-4756-989B-A65620D63A14} = {7783A106-0F4C-4055-9AB4-413FB2C7B8F0}
279267
{5AF3CE0B-9C47-4FD0-83F6-D6C1E0A50E85} = {8415FED7-1BED-4227-8B4F-BB7C24E041CD}
280268
{037B35D5-05A7-4333-AA91-B8002068B0B2} = {7783A106-0F4C-4055-9AB4-413FB2C7B8F0}
281-
{66CCFC9E-DA43-4DAB-9746-92B51AAC5F29} = {8415FED7-1BED-4227-8B4F-BB7C24E041CD}
282-
{46261109-F6F7-4353-BD4E-171AEED198F3} = {7783A106-0F4C-4055-9AB4-413FB2C7B8F0}
283269
{9337000B-EA3B-40BE-9A33-38BC28DFD0CB} = {8415FED7-1BED-4227-8B4F-BB7C24E041CD}
284270
{6674B4B4-2D0E-4840-8CF0-2356ACDE8863} = {8415FED7-1BED-4227-8B4F-BB7C24E041CD}
285271
{C1E36A2C-1C1B-4521-B256-AD42505D9EFB} = {8415FED7-1BED-4227-8B4F-BB7C24E041CD}

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ This repository contains shared libraries used across the NuGet server repositor
77
* NuGet.Services.Owin
88
* NuGet.Services.Cursor
99
* NuGet.Services.Storage
10-
* NuGet.Services.AzureManagement
1110

1211
## Trademarks
1312

build.ps1

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ Invoke-BuildStep 'Clearing artifacts' { Clear-Artifacts } `
6363

6464
Invoke-BuildStep 'Set version metadata in AssemblyInfo.cs' { `
6565
$versionMetadata = `
66-
"$PSScriptRoot\src\NuGet.Services.AzureManagement\Properties\AssemblyInfo.g.cs", `
6766
"$PSScriptRoot\src\NuGet.Services.Build\Properties\AssemblyInfo.g.cs",`
6867
"$PSScriptRoot\src\NuGet.Services.Configuration\Properties\AssemblyInfo.g.cs", `
6968
"$PSScriptRoot\src\NuGet.Services.Contracts\Properties\AssemblyInfo.g.cs", `
@@ -122,7 +121,6 @@ Invoke-BuildStep 'Creating artifacts' { `
122121
"src\NuGet.Services.Storage\NuGet.Services.Storage.csproj", `
123122
"src\NuGet.Services.Cursor\NuGet.Services.Cursor.csproj", `
124123
"src\NuGet.Services.Owin\NuGet.Services.Owin.csproj", `
125-
"src\NuGet.Services.AzureManagement\NuGet.Services.AzureManagement.csproj", `
126124
"src\NuGet.Services.Contracts\NuGet.Services.Contracts.csproj", `
127125
"src\NuGet.Services.ServiceBus\NuGet.Services.ServiceBus.csproj", `
128126
"src\NuGet.Services.Validation\NuGet.Services.Validation.csproj", `

src/NuGet.Services.AzureManagement/AzureHelper.cs

Lines changed: 0 additions & 157 deletions
This file was deleted.

0 commit comments

Comments
 (0)