Skip to content
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
128 changes: 64 additions & 64 deletions src/DnsResolver/Az.DnsResolver.format.ps1xml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/DnsResolver/Az.DnsResolver.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
# Generated on: 2/21/2022
# Generated on: 7/6/2022
#

@{
Expand Down
14 changes: 9 additions & 5 deletions src/DnsResolver/Az.DnsResolver.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
1 change: 1 addition & 0 deletions src/DnsResolver/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- Additional information about change #1
-->
## Upcoming Release
* Upgraded API version to 2022-07-01

## Version 0.2.0
* Preview release for module Az.DnsResolver
Expand Down
158 changes: 79 additions & 79 deletions src/DnsResolver/DnsResolver.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", "{1AAF4496-1C62-4239-9FC9-45241679C601}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Accounts", "..\Accounts\Accounts\Accounts.csproj", "{0305F1CE-B0D2-4DDE-AAA8-673209A24BDE}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication", "..\Accounts\Authentication\Authentication.csproj", "{7AD1DC11-29EC-4D98-8336-35713887406F}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication", "..\Accounts\Authentication\Authentication.csproj", "{C2AB0A0E-536C-4BC1-8C55-48CB7EBD3748}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication.ResourceManager", "..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{D0F3FF3B-C2DB-446C-A7F2-0E094230B789}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication.ResourceManager", "..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{43A2C05E-F534-4E6F-8F27-7EEF49001CC8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthenticationAssemblyLoadContext", "..\Accounts\AuthenticationAssemblyLoadContext\AuthenticationAssemblyLoadContext.csproj", "{72C91295-B6CE-462D-B845-BEE9BFC91C4D}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthenticationAssemblyLoadContext", "..\Accounts\AuthenticationAssemblyLoadContext\AuthenticationAssemblyLoadContext.csproj", "{3559AC31-6C95-4BB6-8081-D3E1FFA399B1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accounts\Authenticators\Authenticators.csproj", "{DB823C03-6F58-4B24-9389-70E58CA4527D}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accounts\Authenticators\Authenticators.csproj", "{D95E12E1-E2E4-4E49-AAD2-F95857A060C9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.DnsResolver", "Az.DnsResolver.csproj", "{B99BC3EF-8185-4231-8D07-39E33803AB1D}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.DnsResolver", "Az.DnsResolver.csproj", "{22BDF02C-5ACB-4919-94AE-34E3D0E5BA49}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -28,77 +28,77 @@ Global
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{1AAF4496-1C62-4239-9FC9-45241679C601}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1AAF4496-1C62-4239-9FC9-45241679C601}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1AAF4496-1C62-4239-9FC9-45241679C601}.Debug|x64.ActiveCfg = Debug|Any CPU
{1AAF4496-1C62-4239-9FC9-45241679C601}.Debug|x64.Build.0 = Debug|Any CPU
{1AAF4496-1C62-4239-9FC9-45241679C601}.Debug|x86.ActiveCfg = Debug|Any CPU
{1AAF4496-1C62-4239-9FC9-45241679C601}.Debug|x86.Build.0 = Debug|Any CPU
{1AAF4496-1C62-4239-9FC9-45241679C601}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1AAF4496-1C62-4239-9FC9-45241679C601}.Release|Any CPU.Build.0 = Release|Any CPU
{1AAF4496-1C62-4239-9FC9-45241679C601}.Release|x64.ActiveCfg = Release|Any CPU
{1AAF4496-1C62-4239-9FC9-45241679C601}.Release|x64.Build.0 = Release|Any CPU
{1AAF4496-1C62-4239-9FC9-45241679C601}.Release|x86.ActiveCfg = Release|Any CPU
{1AAF4496-1C62-4239-9FC9-45241679C601}.Release|x86.Build.0 = Release|Any CPU
{7AD1DC11-29EC-4D98-8336-35713887406F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7AD1DC11-29EC-4D98-8336-35713887406F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7AD1DC11-29EC-4D98-8336-35713887406F}.Debug|x64.ActiveCfg = Debug|Any CPU
{7AD1DC11-29EC-4D98-8336-35713887406F}.Debug|x64.Build.0 = Debug|Any CPU
{7AD1DC11-29EC-4D98-8336-35713887406F}.Debug|x86.ActiveCfg = Debug|Any CPU
{7AD1DC11-29EC-4D98-8336-35713887406F}.Debug|x86.Build.0 = Debug|Any CPU
{7AD1DC11-29EC-4D98-8336-35713887406F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7AD1DC11-29EC-4D98-8336-35713887406F}.Release|Any CPU.Build.0 = Release|Any CPU
{7AD1DC11-29EC-4D98-8336-35713887406F}.Release|x64.ActiveCfg = Release|Any CPU
{7AD1DC11-29EC-4D98-8336-35713887406F}.Release|x64.Build.0 = Release|Any CPU
{7AD1DC11-29EC-4D98-8336-35713887406F}.Release|x86.ActiveCfg = Release|Any CPU
{7AD1DC11-29EC-4D98-8336-35713887406F}.Release|x86.Build.0 = Release|Any CPU
{D0F3FF3B-C2DB-446C-A7F2-0E094230B789}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D0F3FF3B-C2DB-446C-A7F2-0E094230B789}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D0F3FF3B-C2DB-446C-A7F2-0E094230B789}.Debug|x64.ActiveCfg = Debug|Any CPU
{D0F3FF3B-C2DB-446C-A7F2-0E094230B789}.Debug|x64.Build.0 = Debug|Any CPU
{D0F3FF3B-C2DB-446C-A7F2-0E094230B789}.Debug|x86.ActiveCfg = Debug|Any CPU
{D0F3FF3B-C2DB-446C-A7F2-0E094230B789}.Debug|x86.Build.0 = Debug|Any CPU
{D0F3FF3B-C2DB-446C-A7F2-0E094230B789}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D0F3FF3B-C2DB-446C-A7F2-0E094230B789}.Release|Any CPU.Build.0 = Release|Any CPU
{D0F3FF3B-C2DB-446C-A7F2-0E094230B789}.Release|x64.ActiveCfg = Release|Any CPU
{D0F3FF3B-C2DB-446C-A7F2-0E094230B789}.Release|x64.Build.0 = Release|Any CPU
{D0F3FF3B-C2DB-446C-A7F2-0E094230B789}.Release|x86.ActiveCfg = Release|Any CPU
{D0F3FF3B-C2DB-446C-A7F2-0E094230B789}.Release|x86.Build.0 = Release|Any CPU
{72C91295-B6CE-462D-B845-BEE9BFC91C4D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{72C91295-B6CE-462D-B845-BEE9BFC91C4D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{72C91295-B6CE-462D-B845-BEE9BFC91C4D}.Debug|x64.ActiveCfg = Debug|Any CPU
{72C91295-B6CE-462D-B845-BEE9BFC91C4D}.Debug|x64.Build.0 = Debug|Any CPU
{72C91295-B6CE-462D-B845-BEE9BFC91C4D}.Debug|x86.ActiveCfg = Debug|Any CPU
{72C91295-B6CE-462D-B845-BEE9BFC91C4D}.Debug|x86.Build.0 = Debug|Any CPU
{72C91295-B6CE-462D-B845-BEE9BFC91C4D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{72C91295-B6CE-462D-B845-BEE9BFC91C4D}.Release|Any CPU.Build.0 = Release|Any CPU
{72C91295-B6CE-462D-B845-BEE9BFC91C4D}.Release|x64.ActiveCfg = Release|Any CPU
{72C91295-B6CE-462D-B845-BEE9BFC91C4D}.Release|x64.Build.0 = Release|Any CPU
{72C91295-B6CE-462D-B845-BEE9BFC91C4D}.Release|x86.ActiveCfg = Release|Any CPU
{72C91295-B6CE-462D-B845-BEE9BFC91C4D}.Release|x86.Build.0 = Release|Any CPU
{DB823C03-6F58-4B24-9389-70E58CA4527D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DB823C03-6F58-4B24-9389-70E58CA4527D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DB823C03-6F58-4B24-9389-70E58CA4527D}.Debug|x64.ActiveCfg = Debug|Any CPU
{DB823C03-6F58-4B24-9389-70E58CA4527D}.Debug|x64.Build.0 = Debug|Any CPU
{DB823C03-6F58-4B24-9389-70E58CA4527D}.Debug|x86.ActiveCfg = Debug|Any CPU
{DB823C03-6F58-4B24-9389-70E58CA4527D}.Debug|x86.Build.0 = Debug|Any CPU
{DB823C03-6F58-4B24-9389-70E58CA4527D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DB823C03-6F58-4B24-9389-70E58CA4527D}.Release|Any CPU.Build.0 = Release|Any CPU
{DB823C03-6F58-4B24-9389-70E58CA4527D}.Release|x64.ActiveCfg = Release|Any CPU
{DB823C03-6F58-4B24-9389-70E58CA4527D}.Release|x64.Build.0 = Release|Any CPU
{DB823C03-6F58-4B24-9389-70E58CA4527D}.Release|x86.ActiveCfg = Release|Any CPU
{DB823C03-6F58-4B24-9389-70E58CA4527D}.Release|x86.Build.0 = Release|Any CPU
{B99BC3EF-8185-4231-8D07-39E33803AB1D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B99BC3EF-8185-4231-8D07-39E33803AB1D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B99BC3EF-8185-4231-8D07-39E33803AB1D}.Debug|x64.ActiveCfg = Debug|Any CPU
{B99BC3EF-8185-4231-8D07-39E33803AB1D}.Debug|x64.Build.0 = Debug|Any CPU
{B99BC3EF-8185-4231-8D07-39E33803AB1D}.Debug|x86.ActiveCfg = Debug|Any CPU
{B99BC3EF-8185-4231-8D07-39E33803AB1D}.Debug|x86.Build.0 = Debug|Any CPU
{B99BC3EF-8185-4231-8D07-39E33803AB1D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B99BC3EF-8185-4231-8D07-39E33803AB1D}.Release|Any CPU.Build.0 = Release|Any CPU
{B99BC3EF-8185-4231-8D07-39E33803AB1D}.Release|x64.ActiveCfg = Release|Any CPU
{B99BC3EF-8185-4231-8D07-39E33803AB1D}.Release|x64.Build.0 = Release|Any CPU
{B99BC3EF-8185-4231-8D07-39E33803AB1D}.Release|x86.ActiveCfg = Release|Any CPU
{B99BC3EF-8185-4231-8D07-39E33803AB1D}.Release|x86.Build.0 = Release|Any CPU
{0305F1CE-B0D2-4DDE-AAA8-673209A24BDE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0305F1CE-B0D2-4DDE-AAA8-673209A24BDE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0305F1CE-B0D2-4DDE-AAA8-673209A24BDE}.Debug|x64.ActiveCfg = Debug|Any CPU
{0305F1CE-B0D2-4DDE-AAA8-673209A24BDE}.Debug|x64.Build.0 = Debug|Any CPU
{0305F1CE-B0D2-4DDE-AAA8-673209A24BDE}.Debug|x86.ActiveCfg = Debug|Any CPU
{0305F1CE-B0D2-4DDE-AAA8-673209A24BDE}.Debug|x86.Build.0 = Debug|Any CPU
{0305F1CE-B0D2-4DDE-AAA8-673209A24BDE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0305F1CE-B0D2-4DDE-AAA8-673209A24BDE}.Release|Any CPU.Build.0 = Release|Any CPU
{0305F1CE-B0D2-4DDE-AAA8-673209A24BDE}.Release|x64.ActiveCfg = Release|Any CPU
{0305F1CE-B0D2-4DDE-AAA8-673209A24BDE}.Release|x64.Build.0 = Release|Any CPU
{0305F1CE-B0D2-4DDE-AAA8-673209A24BDE}.Release|x86.ActiveCfg = Release|Any CPU
{0305F1CE-B0D2-4DDE-AAA8-673209A24BDE}.Release|x86.Build.0 = Release|Any CPU
{C2AB0A0E-536C-4BC1-8C55-48CB7EBD3748}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C2AB0A0E-536C-4BC1-8C55-48CB7EBD3748}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C2AB0A0E-536C-4BC1-8C55-48CB7EBD3748}.Debug|x64.ActiveCfg = Debug|Any CPU
{C2AB0A0E-536C-4BC1-8C55-48CB7EBD3748}.Debug|x64.Build.0 = Debug|Any CPU
{C2AB0A0E-536C-4BC1-8C55-48CB7EBD3748}.Debug|x86.ActiveCfg = Debug|Any CPU
{C2AB0A0E-536C-4BC1-8C55-48CB7EBD3748}.Debug|x86.Build.0 = Debug|Any CPU
{C2AB0A0E-536C-4BC1-8C55-48CB7EBD3748}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C2AB0A0E-536C-4BC1-8C55-48CB7EBD3748}.Release|Any CPU.Build.0 = Release|Any CPU
{C2AB0A0E-536C-4BC1-8C55-48CB7EBD3748}.Release|x64.ActiveCfg = Release|Any CPU
{C2AB0A0E-536C-4BC1-8C55-48CB7EBD3748}.Release|x64.Build.0 = Release|Any CPU
{C2AB0A0E-536C-4BC1-8C55-48CB7EBD3748}.Release|x86.ActiveCfg = Release|Any CPU
{C2AB0A0E-536C-4BC1-8C55-48CB7EBD3748}.Release|x86.Build.0 = Release|Any CPU
{43A2C05E-F534-4E6F-8F27-7EEF49001CC8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{43A2C05E-F534-4E6F-8F27-7EEF49001CC8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{43A2C05E-F534-4E6F-8F27-7EEF49001CC8}.Debug|x64.ActiveCfg = Debug|Any CPU
{43A2C05E-F534-4E6F-8F27-7EEF49001CC8}.Debug|x64.Build.0 = Debug|Any CPU
{43A2C05E-F534-4E6F-8F27-7EEF49001CC8}.Debug|x86.ActiveCfg = Debug|Any CPU
{43A2C05E-F534-4E6F-8F27-7EEF49001CC8}.Debug|x86.Build.0 = Debug|Any CPU
{43A2C05E-F534-4E6F-8F27-7EEF49001CC8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{43A2C05E-F534-4E6F-8F27-7EEF49001CC8}.Release|Any CPU.Build.0 = Release|Any CPU
{43A2C05E-F534-4E6F-8F27-7EEF49001CC8}.Release|x64.ActiveCfg = Release|Any CPU
{43A2C05E-F534-4E6F-8F27-7EEF49001CC8}.Release|x64.Build.0 = Release|Any CPU
{43A2C05E-F534-4E6F-8F27-7EEF49001CC8}.Release|x86.ActiveCfg = Release|Any CPU
{43A2C05E-F534-4E6F-8F27-7EEF49001CC8}.Release|x86.Build.0 = Release|Any CPU
{3559AC31-6C95-4BB6-8081-D3E1FFA399B1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3559AC31-6C95-4BB6-8081-D3E1FFA399B1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3559AC31-6C95-4BB6-8081-D3E1FFA399B1}.Debug|x64.ActiveCfg = Debug|Any CPU
{3559AC31-6C95-4BB6-8081-D3E1FFA399B1}.Debug|x64.Build.0 = Debug|Any CPU
{3559AC31-6C95-4BB6-8081-D3E1FFA399B1}.Debug|x86.ActiveCfg = Debug|Any CPU
{3559AC31-6C95-4BB6-8081-D3E1FFA399B1}.Debug|x86.Build.0 = Debug|Any CPU
{3559AC31-6C95-4BB6-8081-D3E1FFA399B1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3559AC31-6C95-4BB6-8081-D3E1FFA399B1}.Release|Any CPU.Build.0 = Release|Any CPU
{3559AC31-6C95-4BB6-8081-D3E1FFA399B1}.Release|x64.ActiveCfg = Release|Any CPU
{3559AC31-6C95-4BB6-8081-D3E1FFA399B1}.Release|x64.Build.0 = Release|Any CPU
{3559AC31-6C95-4BB6-8081-D3E1FFA399B1}.Release|x86.ActiveCfg = Release|Any CPU
{3559AC31-6C95-4BB6-8081-D3E1FFA399B1}.Release|x86.Build.0 = Release|Any CPU
{D95E12E1-E2E4-4E49-AAD2-F95857A060C9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D95E12E1-E2E4-4E49-AAD2-F95857A060C9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D95E12E1-E2E4-4E49-AAD2-F95857A060C9}.Debug|x64.ActiveCfg = Debug|Any CPU
{D95E12E1-E2E4-4E49-AAD2-F95857A060C9}.Debug|x64.Build.0 = Debug|Any CPU
{D95E12E1-E2E4-4E49-AAD2-F95857A060C9}.Debug|x86.ActiveCfg = Debug|Any CPU
{D95E12E1-E2E4-4E49-AAD2-F95857A060C9}.Debug|x86.Build.0 = Debug|Any CPU
{D95E12E1-E2E4-4E49-AAD2-F95857A060C9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D95E12E1-E2E4-4E49-AAD2-F95857A060C9}.Release|Any CPU.Build.0 = Release|Any CPU
{D95E12E1-E2E4-4E49-AAD2-F95857A060C9}.Release|x64.ActiveCfg = Release|Any CPU
{D95E12E1-E2E4-4E49-AAD2-F95857A060C9}.Release|x64.Build.0 = Release|Any CPU
{D95E12E1-E2E4-4E49-AAD2-F95857A060C9}.Release|x86.ActiveCfg = Release|Any CPU
{D95E12E1-E2E4-4E49-AAD2-F95857A060C9}.Release|x86.Build.0 = Release|Any CPU
{22BDF02C-5ACB-4919-94AE-34E3D0E5BA49}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{22BDF02C-5ACB-4919-94AE-34E3D0E5BA49}.Debug|Any CPU.Build.0 = Debug|Any CPU
{22BDF02C-5ACB-4919-94AE-34E3D0E5BA49}.Debug|x64.ActiveCfg = Debug|Any CPU
{22BDF02C-5ACB-4919-94AE-34E3D0E5BA49}.Debug|x64.Build.0 = Debug|Any CPU
{22BDF02C-5ACB-4919-94AE-34E3D0E5BA49}.Debug|x86.ActiveCfg = Debug|Any CPU
{22BDF02C-5ACB-4919-94AE-34E3D0E5BA49}.Debug|x86.Build.0 = Debug|Any CPU
{22BDF02C-5ACB-4919-94AE-34E3D0E5BA49}.Release|Any CPU.ActiveCfg = Release|Any CPU
{22BDF02C-5ACB-4919-94AE-34E3D0E5BA49}.Release|Any CPU.Build.0 = Release|Any CPU
{22BDF02C-5ACB-4919-94AE-34E3D0E5BA49}.Release|x64.ActiveCfg = Release|Any CPU
{22BDF02C-5ACB-4919-94AE-34E3D0E5BA49}.Release|x64.Build.0 = Release|Any CPU
{22BDF02C-5ACB-4919-94AE-34E3D0E5BA49}.Release|x86.ActiveCfg = Release|Any CPU
{22BDF02C-5ACB-4919-94AE-34E3D0E5BA49}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
10 changes: 5 additions & 5 deletions src/DnsResolver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This directory contains the PowerShell module for the DnsResolver service.
This module was primarily generated via [AutoRest](https://github.com/Azure/autorest) using the [PowerShell](https://github.com/Azure/autorest.powershell) extension.

## Module Requirements
- [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 2.2.3 or greater
- [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 2.7.5 or greater

## Authentication
AutoRest does not generate authentication code for the module. Authentication is handled via Az.Accounts by altering the HTTP payload before it is sent.
Expand Down Expand Up @@ -70,15 +70,15 @@ In this directory, run AutoRest:
> see https://aka.ms/autorest

``` yaml
branch: c02f047046403abdcf578e38780b612c11ef6b0c
branch: 37072829f795ce840b8085035e8adf4721602f34
require:
- $(this-folder)/../readme.azure.noprofile.md
input-file:
- $(repo)/specification/dnsresolver/resource-manager/Microsoft.Network/preview/2020-04-01-preview/dnsresolver.json
- $(repo)/specification/dnsresolver/resource-manager/Microsoft.Network/stable/2022-07-01/dnsresolver.json

module-version: 0.1.6
module-version: 0.2.1
title: DnsResolver
subject-prefix: $(service-name)
subject-prefix: DnsResolver

inlining-threshold: 50
# If there are post APIs for some kinds of actions in the RP, you may need to
Expand Down
4 changes: 2 additions & 2 deletions src/DnsResolver/check-dependencies.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if(-not $Isolated) {
function DownloadModule ([bool]$predicate, [string]$path, [string]$moduleName, [string]$versionMinimum, [string]$requiredVersion) {
if($predicate) {
$module = Get-Module -ListAvailable -Name $moduleName
if((-not $module) -or ($versionMinimum -and ($module | ForEach-Object { $_.Version } | Where-Object { $_ -ge [System.Version]$versionMinimum } | Measure-Object).Count -eq 0)) {
if((-not $module) -or ($versionMinimum -and ($module | ForEach-Object { $_.Version } | Where-Object { $_ -ge [System.Version]$versionMinimum } | Measure-Object).Count -eq 0) -or ($requiredVersion -and ($module | ForEach-Object { $_.Version } | Where-Object { $_ -eq [System.Version]$requiredVersion } | Measure-Object).Count -eq 0)) {
$null = New-Item -ItemType Directory -Force -Path $path
Write-Host -ForegroundColor Green "Installing local $moduleName module into '$path'..."
if ($requiredVersion) {
Expand All @@ -47,7 +47,7 @@ if(Test-Path -Path $localModulesPath) {
$env:PSModulePath = "$localModulesPath$([IO.Path]::PathSeparator)$env:PSModulePath"
}

DownloadModule -predicate ($all -or $Accounts) -path $localModulesPath -moduleName 'Az.Accounts' -versionMinimum '2.2.3'
DownloadModule -predicate ($all -or $Accounts) -path $localModulesPath -moduleName 'Az.Accounts' -versionMinimum '2.7.5'
DownloadModule -predicate ($all -or $Pester) -path $localModulesPath -moduleName 'Pester' -requiredVersion '4.10.1'

$tools = Join-Path $PSScriptRoot 'tools'
Expand Down
Loading