Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate ManagedServiceIdentity from generation to main #19871

Merged
merged 2 commits into from
Oct 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
368 changes: 272 additions & 96 deletions src/ManagedServiceIdentity/Az.ManagedServiceIdentity.format.ps1xml

Large diffs are not rendered by default.

13 changes: 9 additions & 4 deletions src/ManagedServiceIdentity/Az.ManagedServiceIdentity.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
# Generated on: 5/19/2022
# Generated on: 10/20/2022
#

@{
Expand Down Expand Up @@ -69,8 +69,13 @@ FormatsToProcess = './Az.ManagedServiceIdentity.format.ps1xml'
# NestedModules = @()

# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
FunctionsToExport = 'Get-AzSystemAssignedIdentity', 'Get-AzUserAssignedIdentity',
'New-AzUserAssignedIdentity', 'Remove-AzUserAssignedIdentity',
FunctionsToExport = 'Get-AzFederatedIdentityCredentials',
'Get-AzSystemAssignedIdentity', 'Get-AzUserAssignedIdentity',
'Get-AzUserAssignedIdentityAssociatedResource',
'New-AzFederatedIdentityCredentials', 'New-AzUserAssignedIdentity',
'Remove-AzFederatedIdentityCredentials',
'Remove-AzUserAssignedIdentity',
'Update-AzFederatedIdentityCredentials',
'Update-AzUserAssignedIdentity'

# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
Expand Down Expand Up @@ -109,7 +114,7 @@ PrivateData = @{
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = '* General availability of ''Az.ManagedServiceIdentity'''
# ReleaseNotes = ''

# Prerelease string of this module
# Prerelease = ''
Expand Down
14 changes: 9 additions & 5 deletions src/ManagedServiceIdentity/Az.ManagedServiceIdentity.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@
}
}
if(-not $accountsModule) {
$hasAdequateVersion = (Get-Module -Name $accountsName -ListAvailable | Where-Object { $_.Version -ge [System.Version]'2.2.3' } | Measure-Object).Count -gt 0
$hasAdequateVersion = (Get-Module -Name $accountsName -ListAvailable | Where-Object { $_.Version -ge [System.Version]'2.7.5' } | Measure-Object).Count -gt 0
if($hasAdequateVersion) {
$accountsModule = Import-Module -Name $accountsName -MinimumVersion 2.2.3 -Scope Global -PassThru
$accountsModule = Import-Module -Name $accountsName -MinimumVersion 2.7.5 -Scope Global -PassThru
}
}
}

if(-not $accountsModule) {
Write-Error "`nThis module requires $accountsName version 2.2.3 or greater. For installation instructions, please see: https://docs.microsoft.com/powershell/azure/install-az-ps" -ErrorAction Stop
} elseif (($accountsModule.Version -lt [System.Version]'2.2.3') -and (-not $localAccounts)) {
Write-Error "`nThis module requires $accountsName version 2.2.3 or greater. An earlier version of Az.Accounts is imported in the current PowerShell session. If you are running test, please try to add the switch '-RegenerateSupportModule' when executing 'test-module.ps1'. Otherwise please open a new PowerShell session and import this module again.`nAdditionally, this error could indicate that multiple incompatible versions of Azure PowerShell modules are installed on your system. For troubleshooting information, please see: https://aka.ms/azps-version-error" -ErrorAction Stop
Write-Error "`nThis module requires $accountsName version 2.7.5 or greater. For installation instructions, please see: https://docs.microsoft.com/powershell/azure/install-az-ps" -ErrorAction Stop
} elseif (($accountsModule.Version -lt [System.Version]'2.7.5') -and (-not $localAccounts)) {
Write-Error "`nThis module requires $accountsName version 2.7.5 or greater. An earlier version of Az.Accounts is imported in the current PowerShell session. If you are running test, please try to add the switch '-RegenerateSupportModule' when executing 'test-module.ps1'. Otherwise please open a new PowerShell session and import this module again.`nAdditionally, this error could indicate that multiple incompatible versions of Azure PowerShell modules are installed on your system. For troubleshooting information, please see: https://aka.ms/azps-version-error" -ErrorAction Stop
}
Write-Information "Loaded Module '$($accountsModule.Name)'"

Expand All @@ -50,6 +50,10 @@

# Tweaks the pipeline on module load
$instance.OnModuleLoad = $VTable.OnModuleLoad

# Following two delegates are added for telemetry
$instance.GetTelemetryId = $VTable.GetTelemetryId
$instance.Telemetry = $VTable.Telemetry


# Tweaks the pipeline per call
Expand Down
7 changes: 7 additions & 0 deletions src/ManagedServiceIdentity/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@
- Additional information about change #1
-->
## Upcoming Release
* Supported Create/Get/Update/Remove Federated Identity Credentials on a User Assigned Managed Identity
* `Get-AzFederatedIdentityCredentials`
* `New-AzFederatedIdentityCredentials`
* `Remove-AzFederatedIdentityCredentials`
* `Update-AzFederatedIdentityCredentials`
* Supported List Associated Resources on a User Assigned Managed Identity
* `Get-AzUserAssignedIdentityAssociatedResource`

## Version 1.0.0
* General availability of `Az.ManagedServiceIdentity`
Expand Down
158 changes: 79 additions & 79 deletions src/ManagedServiceIdentity/ManagedServiceIdentity.sln
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30114.105
VisualStudioVersion = 16.6.30114.105
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Accounts", "..\Accounts\Accounts\Accounts.csproj", "{F22C15F4-7C6B-4189-B389-05005E1810DE}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Accounts", "..\Accounts\Accounts\Accounts.csproj", "{546F39B2-DE97-4A6A-B1CE-20717365B355}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication", "..\Accounts\Authentication\Authentication.csproj", "{35912812-5A47-43DE-A279-F6912E813FCD}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication", "..\Accounts\Authentication\Authentication.csproj", "{2BEEAE17-FFED-4D01-819C-998D94953F37}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication.ResourceManager", "..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{73EABD4A-FB9D-4529-BDB8-AE863B5D2AE1}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication.ResourceManager", "..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{E675828F-0AF0-4D10-8663-21B9D0D1FE01}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthenticationAssemblyLoadContext", "..\Accounts\AuthenticationAssemblyLoadContext\AuthenticationAssemblyLoadContext.csproj", "{AC17A715-7B62-4B8A-97C7-6E6D4F96F67E}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthenticationAssemblyLoadContext", "..\Accounts\AuthenticationAssemblyLoadContext\AuthenticationAssemblyLoadContext.csproj", "{80854D19-8126-46E3-A78C-4989CEE0E556}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accounts\Authenticators\Authenticators.csproj", "{CB21F407-8A6D-4174-AAFB-DE6867376556}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accounts\Authenticators\Authenticators.csproj", "{99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.ManagedServiceIdentity", "Az.ManagedServiceIdentity.csproj", "{8B51E4BF-140C-4570-9904-77C685843C46}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.ManagedServiceIdentity", "Az.ManagedServiceIdentity.csproj", "{E579A17A-9473-4506-9C46-252051A92717}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -28,77 +28,77 @@ Global
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F22C15F4-7C6B-4189-B389-05005E1810DE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F22C15F4-7C6B-4189-B389-05005E1810DE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F22C15F4-7C6B-4189-B389-05005E1810DE}.Debug|x64.ActiveCfg = Debug|Any CPU
{F22C15F4-7C6B-4189-B389-05005E1810DE}.Debug|x64.Build.0 = Debug|Any CPU
{F22C15F4-7C6B-4189-B389-05005E1810DE}.Debug|x86.ActiveCfg = Debug|Any CPU
{F22C15F4-7C6B-4189-B389-05005E1810DE}.Debug|x86.Build.0 = Debug|Any CPU
{F22C15F4-7C6B-4189-B389-05005E1810DE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F22C15F4-7C6B-4189-B389-05005E1810DE}.Release|Any CPU.Build.0 = Release|Any CPU
{F22C15F4-7C6B-4189-B389-05005E1810DE}.Release|x64.ActiveCfg = Release|Any CPU
{F22C15F4-7C6B-4189-B389-05005E1810DE}.Release|x64.Build.0 = Release|Any CPU
{F22C15F4-7C6B-4189-B389-05005E1810DE}.Release|x86.ActiveCfg = Release|Any CPU
{F22C15F4-7C6B-4189-B389-05005E1810DE}.Release|x86.Build.0 = Release|Any CPU
{35912812-5A47-43DE-A279-F6912E813FCD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{35912812-5A47-43DE-A279-F6912E813FCD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{35912812-5A47-43DE-A279-F6912E813FCD}.Debug|x64.ActiveCfg = Debug|Any CPU
{35912812-5A47-43DE-A279-F6912E813FCD}.Debug|x64.Build.0 = Debug|Any CPU
{35912812-5A47-43DE-A279-F6912E813FCD}.Debug|x86.ActiveCfg = Debug|Any CPU
{35912812-5A47-43DE-A279-F6912E813FCD}.Debug|x86.Build.0 = Debug|Any CPU
{35912812-5A47-43DE-A279-F6912E813FCD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{35912812-5A47-43DE-A279-F6912E813FCD}.Release|Any CPU.Build.0 = Release|Any CPU
{35912812-5A47-43DE-A279-F6912E813FCD}.Release|x64.ActiveCfg = Release|Any CPU
{35912812-5A47-43DE-A279-F6912E813FCD}.Release|x64.Build.0 = Release|Any CPU
{35912812-5A47-43DE-A279-F6912E813FCD}.Release|x86.ActiveCfg = Release|Any CPU
{35912812-5A47-43DE-A279-F6912E813FCD}.Release|x86.Build.0 = Release|Any CPU
{73EABD4A-FB9D-4529-BDB8-AE863B5D2AE1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{73EABD4A-FB9D-4529-BDB8-AE863B5D2AE1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{73EABD4A-FB9D-4529-BDB8-AE863B5D2AE1}.Debug|x64.ActiveCfg = Debug|Any CPU
{73EABD4A-FB9D-4529-BDB8-AE863B5D2AE1}.Debug|x64.Build.0 = Debug|Any CPU
{73EABD4A-FB9D-4529-BDB8-AE863B5D2AE1}.Debug|x86.ActiveCfg = Debug|Any CPU
{73EABD4A-FB9D-4529-BDB8-AE863B5D2AE1}.Debug|x86.Build.0 = Debug|Any CPU
{73EABD4A-FB9D-4529-BDB8-AE863B5D2AE1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{73EABD4A-FB9D-4529-BDB8-AE863B5D2AE1}.Release|Any CPU.Build.0 = Release|Any CPU
{73EABD4A-FB9D-4529-BDB8-AE863B5D2AE1}.Release|x64.ActiveCfg = Release|Any CPU
{73EABD4A-FB9D-4529-BDB8-AE863B5D2AE1}.Release|x64.Build.0 = Release|Any CPU
{73EABD4A-FB9D-4529-BDB8-AE863B5D2AE1}.Release|x86.ActiveCfg = Release|Any CPU
{73EABD4A-FB9D-4529-BDB8-AE863B5D2AE1}.Release|x86.Build.0 = Release|Any CPU
{AC17A715-7B62-4B8A-97C7-6E6D4F96F67E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AC17A715-7B62-4B8A-97C7-6E6D4F96F67E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AC17A715-7B62-4B8A-97C7-6E6D4F96F67E}.Debug|x64.ActiveCfg = Debug|Any CPU
{AC17A715-7B62-4B8A-97C7-6E6D4F96F67E}.Debug|x64.Build.0 = Debug|Any CPU
{AC17A715-7B62-4B8A-97C7-6E6D4F96F67E}.Debug|x86.ActiveCfg = Debug|Any CPU
{AC17A715-7B62-4B8A-97C7-6E6D4F96F67E}.Debug|x86.Build.0 = Debug|Any CPU
{AC17A715-7B62-4B8A-97C7-6E6D4F96F67E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AC17A715-7B62-4B8A-97C7-6E6D4F96F67E}.Release|Any CPU.Build.0 = Release|Any CPU
{AC17A715-7B62-4B8A-97C7-6E6D4F96F67E}.Release|x64.ActiveCfg = Release|Any CPU
{AC17A715-7B62-4B8A-97C7-6E6D4F96F67E}.Release|x64.Build.0 = Release|Any CPU
{AC17A715-7B62-4B8A-97C7-6E6D4F96F67E}.Release|x86.ActiveCfg = Release|Any CPU
{AC17A715-7B62-4B8A-97C7-6E6D4F96F67E}.Release|x86.Build.0 = Release|Any CPU
{CB21F407-8A6D-4174-AAFB-DE6867376556}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CB21F407-8A6D-4174-AAFB-DE6867376556}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CB21F407-8A6D-4174-AAFB-DE6867376556}.Debug|x64.ActiveCfg = Debug|Any CPU
{CB21F407-8A6D-4174-AAFB-DE6867376556}.Debug|x64.Build.0 = Debug|Any CPU
{CB21F407-8A6D-4174-AAFB-DE6867376556}.Debug|x86.ActiveCfg = Debug|Any CPU
{CB21F407-8A6D-4174-AAFB-DE6867376556}.Debug|x86.Build.0 = Debug|Any CPU
{CB21F407-8A6D-4174-AAFB-DE6867376556}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CB21F407-8A6D-4174-AAFB-DE6867376556}.Release|Any CPU.Build.0 = Release|Any CPU
{CB21F407-8A6D-4174-AAFB-DE6867376556}.Release|x64.ActiveCfg = Release|Any CPU
{CB21F407-8A6D-4174-AAFB-DE6867376556}.Release|x64.Build.0 = Release|Any CPU
{CB21F407-8A6D-4174-AAFB-DE6867376556}.Release|x86.ActiveCfg = Release|Any CPU
{CB21F407-8A6D-4174-AAFB-DE6867376556}.Release|x86.Build.0 = Release|Any CPU
{8B51E4BF-140C-4570-9904-77C685843C46}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8B51E4BF-140C-4570-9904-77C685843C46}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8B51E4BF-140C-4570-9904-77C685843C46}.Debug|x64.ActiveCfg = Debug|Any CPU
{8B51E4BF-140C-4570-9904-77C685843C46}.Debug|x64.Build.0 = Debug|Any CPU
{8B51E4BF-140C-4570-9904-77C685843C46}.Debug|x86.ActiveCfg = Debug|Any CPU
{8B51E4BF-140C-4570-9904-77C685843C46}.Debug|x86.Build.0 = Debug|Any CPU
{8B51E4BF-140C-4570-9904-77C685843C46}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8B51E4BF-140C-4570-9904-77C685843C46}.Release|Any CPU.Build.0 = Release|Any CPU
{8B51E4BF-140C-4570-9904-77C685843C46}.Release|x64.ActiveCfg = Release|Any CPU
{8B51E4BF-140C-4570-9904-77C685843C46}.Release|x64.Build.0 = Release|Any CPU
{8B51E4BF-140C-4570-9904-77C685843C46}.Release|x86.ActiveCfg = Release|Any CPU
{8B51E4BF-140C-4570-9904-77C685843C46}.Release|x86.Build.0 = Release|Any CPU
{546F39B2-DE97-4A6A-B1CE-20717365B355}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{546F39B2-DE97-4A6A-B1CE-20717365B355}.Debug|Any CPU.Build.0 = Debug|Any CPU
{546F39B2-DE97-4A6A-B1CE-20717365B355}.Debug|x64.ActiveCfg = Debug|Any CPU
{546F39B2-DE97-4A6A-B1CE-20717365B355}.Debug|x64.Build.0 = Debug|Any CPU
{546F39B2-DE97-4A6A-B1CE-20717365B355}.Debug|x86.ActiveCfg = Debug|Any CPU
{546F39B2-DE97-4A6A-B1CE-20717365B355}.Debug|x86.Build.0 = Debug|Any CPU
{546F39B2-DE97-4A6A-B1CE-20717365B355}.Release|Any CPU.ActiveCfg = Release|Any CPU
{546F39B2-DE97-4A6A-B1CE-20717365B355}.Release|Any CPU.Build.0 = Release|Any CPU
{546F39B2-DE97-4A6A-B1CE-20717365B355}.Release|x64.ActiveCfg = Release|Any CPU
{546F39B2-DE97-4A6A-B1CE-20717365B355}.Release|x64.Build.0 = Release|Any CPU
{546F39B2-DE97-4A6A-B1CE-20717365B355}.Release|x86.ActiveCfg = Release|Any CPU
{546F39B2-DE97-4A6A-B1CE-20717365B355}.Release|x86.Build.0 = Release|Any CPU
{2BEEAE17-FFED-4D01-819C-998D94953F37}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2BEEAE17-FFED-4D01-819C-998D94953F37}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2BEEAE17-FFED-4D01-819C-998D94953F37}.Debug|x64.ActiveCfg = Debug|Any CPU
{2BEEAE17-FFED-4D01-819C-998D94953F37}.Debug|x64.Build.0 = Debug|Any CPU
{2BEEAE17-FFED-4D01-819C-998D94953F37}.Debug|x86.ActiveCfg = Debug|Any CPU
{2BEEAE17-FFED-4D01-819C-998D94953F37}.Debug|x86.Build.0 = Debug|Any CPU
{2BEEAE17-FFED-4D01-819C-998D94953F37}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2BEEAE17-FFED-4D01-819C-998D94953F37}.Release|Any CPU.Build.0 = Release|Any CPU
{2BEEAE17-FFED-4D01-819C-998D94953F37}.Release|x64.ActiveCfg = Release|Any CPU
{2BEEAE17-FFED-4D01-819C-998D94953F37}.Release|x64.Build.0 = Release|Any CPU
{2BEEAE17-FFED-4D01-819C-998D94953F37}.Release|x86.ActiveCfg = Release|Any CPU
{2BEEAE17-FFED-4D01-819C-998D94953F37}.Release|x86.Build.0 = Release|Any CPU
{E675828F-0AF0-4D10-8663-21B9D0D1FE01}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E675828F-0AF0-4D10-8663-21B9D0D1FE01}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E675828F-0AF0-4D10-8663-21B9D0D1FE01}.Debug|x64.ActiveCfg = Debug|Any CPU
{E675828F-0AF0-4D10-8663-21B9D0D1FE01}.Debug|x64.Build.0 = Debug|Any CPU
{E675828F-0AF0-4D10-8663-21B9D0D1FE01}.Debug|x86.ActiveCfg = Debug|Any CPU
{E675828F-0AF0-4D10-8663-21B9D0D1FE01}.Debug|x86.Build.0 = Debug|Any CPU
{E675828F-0AF0-4D10-8663-21B9D0D1FE01}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E675828F-0AF0-4D10-8663-21B9D0D1FE01}.Release|Any CPU.Build.0 = Release|Any CPU
{E675828F-0AF0-4D10-8663-21B9D0D1FE01}.Release|x64.ActiveCfg = Release|Any CPU
{E675828F-0AF0-4D10-8663-21B9D0D1FE01}.Release|x64.Build.0 = Release|Any CPU
{E675828F-0AF0-4D10-8663-21B9D0D1FE01}.Release|x86.ActiveCfg = Release|Any CPU
{E675828F-0AF0-4D10-8663-21B9D0D1FE01}.Release|x86.Build.0 = Release|Any CPU
{80854D19-8126-46E3-A78C-4989CEE0E556}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{80854D19-8126-46E3-A78C-4989CEE0E556}.Debug|Any CPU.Build.0 = Debug|Any CPU
{80854D19-8126-46E3-A78C-4989CEE0E556}.Debug|x64.ActiveCfg = Debug|Any CPU
{80854D19-8126-46E3-A78C-4989CEE0E556}.Debug|x64.Build.0 = Debug|Any CPU
{80854D19-8126-46E3-A78C-4989CEE0E556}.Debug|x86.ActiveCfg = Debug|Any CPU
{80854D19-8126-46E3-A78C-4989CEE0E556}.Debug|x86.Build.0 = Debug|Any CPU
{80854D19-8126-46E3-A78C-4989CEE0E556}.Release|Any CPU.ActiveCfg = Release|Any CPU
{80854D19-8126-46E3-A78C-4989CEE0E556}.Release|Any CPU.Build.0 = Release|Any CPU
{80854D19-8126-46E3-A78C-4989CEE0E556}.Release|x64.ActiveCfg = Release|Any CPU
{80854D19-8126-46E3-A78C-4989CEE0E556}.Release|x64.Build.0 = Release|Any CPU
{80854D19-8126-46E3-A78C-4989CEE0E556}.Release|x86.ActiveCfg = Release|Any CPU
{80854D19-8126-46E3-A78C-4989CEE0E556}.Release|x86.Build.0 = Release|Any CPU
{99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}.Debug|x64.ActiveCfg = Debug|Any CPU
{99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}.Debug|x64.Build.0 = Debug|Any CPU
{99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}.Debug|x86.ActiveCfg = Debug|Any CPU
{99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}.Debug|x86.Build.0 = Debug|Any CPU
{99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}.Release|Any CPU.Build.0 = Release|Any CPU
{99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}.Release|x64.ActiveCfg = Release|Any CPU
{99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}.Release|x64.Build.0 = Release|Any CPU
{99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}.Release|x86.ActiveCfg = Release|Any CPU
{99FF5124-F7AF-46AA-9735-0CF00CFEF5C2}.Release|x86.Build.0 = Release|Any CPU
{E579A17A-9473-4506-9C46-252051A92717}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E579A17A-9473-4506-9C46-252051A92717}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E579A17A-9473-4506-9C46-252051A92717}.Debug|x64.ActiveCfg = Debug|Any CPU
{E579A17A-9473-4506-9C46-252051A92717}.Debug|x64.Build.0 = Debug|Any CPU
{E579A17A-9473-4506-9C46-252051A92717}.Debug|x86.ActiveCfg = Debug|Any CPU
{E579A17A-9473-4506-9C46-252051A92717}.Debug|x86.Build.0 = Debug|Any CPU
{E579A17A-9473-4506-9C46-252051A92717}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E579A17A-9473-4506-9C46-252051A92717}.Release|Any CPU.Build.0 = Release|Any CPU
{E579A17A-9473-4506-9C46-252051A92717}.Release|x64.ActiveCfg = Release|Any CPU
{E579A17A-9473-4506-9C46-252051A92717}.Release|x64.Build.0 = Release|Any CPU
{E579A17A-9473-4506-9C46-252051A92717}.Release|x86.ActiveCfg = Release|Any CPU
{E579A17A-9473-4506-9C46-252051A92717}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
Loading