Skip to content

Commit b1d2eed

Browse files
authored
release-2024-02-08 hotfix (#24150)
2 parents 490d0f7 + 2c521b2 commit b1d2eed

File tree

20 files changed

+1891
-1946
lines changed

20 files changed

+1891
-1946
lines changed

ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 11.3.1 - February 2024
2+
#### Az.Resources 6.15.1
3+
* Fixed deadlock in Bicep CLI execution. [#24133]
4+
15
## 11.3.0 - February 2024
26
#### Az.Accounts 2.15.1
37
* Upgraded the reference of Azure PowerShell Common to 1.3.90-preview.

build.proj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@
4444
<!-- Flags -->
4545
<CodeSign Condition ="'$(CodeSign)' == ''">false</CodeSign>
4646
<SkipHelp Condition ="'$(SkipHelp)' != 'true'">false</SkipHelp>
47+
<TargetBuild Condition="Exists($(TargetModule))">true</TargetBuild>
48+
<TargetBuild Condition="!Exists($(TargetModule))">false</TargetBuild>
49+
50+
4751
<!-- Set this true only if you want to test the CodeSign workflow locally -->
4852
<DelaySign Condition ="'$(DelaySign)' == ''">false</DelaySign>
4953
<NetCore Condition="'$(NetCore)' != 'false'">true</NetCore>
@@ -262,7 +266,7 @@
262266
<Exec Command="$(PowerShellCoreCommandPrefix) &quot;. $(RepoTools)/CleanupBuild.ps1 -BuildConfig $(Configuration) -GenerateDocumentationFile $(GenerateDocumentationFile) &quot;" />
263267

264268
<Error Condition="'$(NuGetKey)' == ''" Text="You must provide the NuGetKey parameter to the build: /p:NuGetKey=YOUR_PUBLISHING_KEY" />
265-
<Exec Command="$(PowerShellCoreCommandPrefix) &quot;. $(RepoTools)/PublishModules.ps1 -IsNetCore:$$(NetCore) -BuildConfig $(Configuration) -Scope $(Scope) -ApiKey $(NuGetKey) -RepositoryLocation \&quot;$(NuGetPublishingSource)\&quot;&quot; -NugetExe $(NuGetCommand)" />
269+
<Exec Command="$(PowerShellCoreCommandPrefix) &quot;. $(RepoTools)/PublishModules.ps1 -TargetBuild $(TargetBuild) -IsNetCore:$$(NetCore) -BuildConfig $(Configuration) -Scope $(Scope) -ApiKey $(NuGetKey) -RepositoryLocation \&quot;$(NuGetPublishingSource)\&quot;&quot; -NugetExe $(NuGetCommand)" />
266270
</Target>
267271

268272
<Target Name="BuildInstaller" AfterTargets="Publish" Condition="('$(Scope)' == 'All' or '$(Scope)' == 'Latest' or '$(Scope)' == 'Netcore')">

documentation/SyntaxChangeLog/SyntaxChangeLog-Az11.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 11.3.1 - February 2024
2+
13
## 11.3.0 - February 2024
24
#### Az.KeyVault 5.2.0
35
* Modified cmdlet `Backup-AzKeyVault`
@@ -47,3 +49,4 @@
4749
- Added parameter `-IsWAC`
4850

4951

52+

src/Resources/Authorization.Autorest/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
[assembly: ComVisible(false)]
2525
[assembly: CLSCompliant(false)]
2626
[assembly: Guid("b2f7fb23-24cf-4e26-840e-db4360603829")]
27-
[assembly: AssemblyVersion("6.15.0")]
28-
[assembly: AssemblyFileVersion("6.15.0")]
27+
[assembly: AssemblyVersion("6.15.1")]
28+
[assembly: AssemblyFileVersion("6.15.1")]

src/Resources/Authorization.Management.Sdk/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@
2626
[assembly: CLSCompliant(false)]
2727
[assembly: Guid("90dfaf23-8518-4eb7-9c53-735ad91a4f81")]
2828

29-
[assembly: AssemblyVersion("6.15.0")]
30-
[assembly: AssemblyFileVersion("6.15.0")]
29+
[assembly: AssemblyVersion("6.15.1")]
30+
[assembly: AssemblyFileVersion("6.15.1")]

src/Resources/MSGraph.Autorest/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
[assembly: ComVisible(false)]
2525
[assembly: CLSCompliant(false)]
2626
[assembly: Guid("113AD566-7045-45C4-8D01-BCFF72F4CE7B")]
27-
[assembly: AssemblyVersion("6.15.0")]
28-
[assembly: AssemblyFileVersion("6.15.0")]
27+
[assembly: AssemblyVersion("6.15.1")]
28+
[assembly: AssemblyFileVersion("6.15.1")]

src/Resources/ResourceManager/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
[assembly: ComVisible(false)]
2626
[assembly: CLSCompliant(false)]
2727
[assembly: Guid("e8f34267-c461-4eae-b156-5f3528553d10")]
28-
[assembly: AssemblyVersion("6.15.0")]
29-
[assembly: AssemblyFileVersion("6.15.0")]
28+
[assembly: AssemblyVersion("6.15.1")]
29+
[assembly: AssemblyFileVersion("6.15.1")]
3030
#if !SIGN
3131
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Resources.Test")]
3232
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.MachineLearning.Test")]

src/Resources/ResourceManager/Utilities/ProcessInvoker.cs

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,16 +99,20 @@ public ProcessOutput Invoke(ProcessInput input)
9999
}
100100
}
101101

102+
var stderr = new StringBuilder();
103+
proc.ErrorDataReceived += (sender, e) => stderr.AppendLine(e.Data);
102104
proc.Start();
103-
var stdout = proc.StandardOutput.ReadToEnd();
104-
var stderr = proc.StandardError.ReadToEnd();
105+
106+
// To avoid deadlocks, use an asynchronous read operation on at least one of the streams.
107+
proc.BeginErrorReadLine();
108+
var stdout = proc.StandardOutput.ReadToEnd();
105109
proc.WaitForExit();
106-
110+
107111
return new ProcessOutput {
108112
Stdout = stdout,
109-
Stderr = stderr,
113+
Stderr = stderr.ToString(),
110114
ExitCode = proc.ExitCode
111115
};
112116
}
113117
}
114-
}
118+
}

src/Resources/Resources.Sdk/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
[assembly: AssemblyTitle("Microsoft Azure Resource Management Library")]
88
[assembly: AssemblyDescription("Provides Microsoft Azure resource management operations including Resource Groups.")]
99

10-
[assembly: AssemblyVersion("6.15.0")]
11-
[assembly: AssemblyFileVersion("6.15.0")]
10+
[assembly: AssemblyVersion("6.15.1")]
11+
[assembly: AssemblyFileVersion("6.15.1")]
1212
[assembly: AssemblyConfiguration("")]
1313
[assembly: AssemblyCompany("Microsoft")]
1414
[assembly: AssemblyProduct("Azure .NET SDK")]

src/Resources/Resources/Az.Resources.psd1

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 1/30/2024
6+
# Generated on: 2/8/2024
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '6.15.0'
15+
ModuleVersion = '6.15.1'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -253,9 +253,7 @@ PrivateData = @{
253253
# IconUri = ''
254254

255255
# ReleaseNotes of this module
256-
ReleaseNotes = '* Supported ''-SkipClientSideScopeValidation'' in RoleAssignment and RoleDefinition related commands. [#22473]
257-
* Updated Bicep build logic to use --stdout flag instead of creating a temporary file on disk.
258-
* Fixed exception when ''-ApiVersion'' is specified for ''Get-AzResource'', affected by some resource types.'
256+
ReleaseNotes = '* Fixed deadlock in Bicep CLI execution. [#24133]'
259257

260258
# Prerelease string of this module
261259
# Prerelease = ''

src/Resources/Resources/ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
## Upcoming Release
2222
* Added `AuxTenant` parameter in `New-AzResourceGroupDeployment`to support cross-tenant deployment.
2323

24+
## Version 6.15.1
25+
* Fixed deadlock in Bicep CLI execution. [#24133]
26+
2427
## Version 6.15.0
2528
* Supported `-SkipClientSideScopeValidation` in RoleAssignment and RoleDefinition related commands. [#22473]
2629
* Updated Bicep build logic to use --stdout flag instead of creating a temporary file on disk.

src/Resources/Resources/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
[assembly: ComVisible(false)]
2626
[assembly: CLSCompliant(false)]
2727
[assembly: Guid("e386b843-f3f0-4db3-8664-37d16b860dde")]
28-
[assembly: AssemblyVersion("6.15.0")]
29-
[assembly: AssemblyFileVersion("6.15.0")]
28+
[assembly: AssemblyVersion("6.15.1")]
29+
[assembly: AssemblyFileVersion("6.15.1")]
3030
#if !SIGN
3131
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Resources.Test")]
3232
#endif

src/Resources/Tags/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
[assembly: ComVisible(false)]
2626
[assembly: CLSCompliant(false)]
2727
[assembly: Guid("e386b843-f3f0-4db3-8664-37d16b860dde")]
28-
[assembly: AssemblyVersion("6.15.0")]
29-
[assembly: AssemblyFileVersion("6.15.0")]
28+
[assembly: AssemblyVersion("6.15.1")]
29+
[assembly: AssemblyFileVersion("6.15.1")]
3030
#if !SIGN
3131
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Resources.Test")]
3232
#endif

tools/Az/Az.psd1

Lines changed: 5 additions & 85 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 1/30/2024
6+
# Generated on: 2/8/2024
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '11.3.0'
15+
ModuleVersion = '11.3.1'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -121,7 +121,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.15.1'; },
121121
@{ModuleName = 'Az.RedisEnterpriseCache'; RequiredVersion = '1.2.0'; },
122122
@{ModuleName = 'Az.Relay'; RequiredVersion = '2.0.0'; },
123123
@{ModuleName = 'Az.ResourceMover'; RequiredVersion = '1.2.0'; },
124-
@{ModuleName = 'Az.Resources'; RequiredVersion = '6.15.0'; },
124+
@{ModuleName = 'Az.Resources'; RequiredVersion = '6.15.1'; },
125125
@{ModuleName = 'Az.Security'; RequiredVersion = '1.5.1'; },
126126
@{ModuleName = 'Az.SecurityInsights'; RequiredVersion = '3.1.1'; },
127127
@{ModuleName = 'Az.ServiceBus'; RequiredVersion = '3.0.0'; },
@@ -194,89 +194,9 @@ PrivateData = @{
194194
# IconUri = ''
195195

196196
# ReleaseNotes of this module
197-
ReleaseNotes = '11.3.0 - February 2024
198-
Az.Accounts
199-
* Upgraded the reference of Azure PowerShell Common to 1.3.90-preview.
200-
* Upgraded Azure.Identity to 1.10.3 [#23018].
201-
- Renamed token cache from ''msal.cache'' to ''msal.cache.cae'' or ''masl.cache.nocae''.
202-
* Enabled Continue Access Evaluation (CAE) for all Service Principals login methods.
203-
* Supported signing in with Microsoft Account (MSA) via Web Account Manager (WAM). Enable it by ''Set-AzConfig -EnableLoginByWam True''.
204-
* Adjusted output format to be more user-friendly for ''Get-AzContext/Tenant/Subscription'' and ''Invoke-AzRestMethod''.
205-
* Fixed the multiple ''x-ms-unique-id'' values issue.
206-
207-
Az.Aks
208-
* Fixed the resolve path issue in ''Install-AzAksCliTool''.
209-
210-
Az.DataFactory
211-
* Added metadata Into StoreWriteSettings For Bug Fix
212-
* Supported ADF Warehouse, Mysql V2 and Salesforce V2 in ADF
213-
214-
Az.ElasticSan
215-
* General availability for module Az.ElasticSan
216-
217-
Az.KeyVault
218-
* Supported authentication via User Managed Identity by adding parameter ''UseUserManagedIdentity'' and making ''SasToken'' optional.
219-
220-
Az.Migrate
221-
* Added support for ''Data.Replication''
222-
223-
Az.Monitor
224-
* Remove outdated breaking change warning [#24033]
225-
226-
Az.Network
227-
* Fixed a few minor issues
228-
* Updated ''New-AzApplicationGateway'' to include ''EnableRequestBuffering'' and ''EnableResponseBuffering'' parameters
229-
* Changed the Default Rule Set from CRS3.0 to DRS2.1 in ''NewAzureApplicationGatewayFirewallPolicy''
230-
* Added optional property ''Profile'' to ''New-AzFirewallPolicyIntrusionDetection''
231-
* Added new cmdlet to update Connection child resource of Network Virtual Appliance. - ''Update-AzNetworkVirtualApplianceConnection''
232-
* Added support of ''InternetIngressIp'' Property in New-AzNetworkVirtualAppliance
233-
* Added the new cmdlet for supporting ''InternetIngressIp'' Property with Network Virtual Appliances -''New-AzVirtualApplianceInternetIngressIpsProperty''
234-
* Added a new AuxiliaryMode value ''AuxiliaryMode.Floating''
235-
* Added support for AzureFirewallPacketCapture
236-
237-
Az.Nginx
238-
* General availability of ''Az.Nginx'' module
239-
240-
Az.RecoveryServices
241-
* Added CRR support for taiwannorth, taiwannorthwest region.
242-
* Added breaking change notification for cmdlets whose output type is ''ASRVaultSettings''.
243-
* Added warning for Standard to Enhanced policy migration for AzureVMs.
244-
* Updated Unregister-AzRecoveryServicesBackupContainer cmdlet to ouptput Job object if PassThru not given.
245-
* Fixed issue with Get-AzRecoveryServicesVaultSettingsFile cmdlet to return private endpoint state for backup.
246-
197+
ReleaseNotes = '11.3.1 - February 2024
247198
Az.Resources
248-
* Supported ''-SkipClientSideScopeValidation'' in RoleAssignment and RoleDefinition related commands. [#22473]
249-
* Updated Bicep build logic to use --stdout flag instead of creating a temporary file on disk.
250-
* Fixed exception when ''-ApiVersion'' is specified for ''Get-AzResource'', affected by some resource types.
251-
252-
Az.Sql
253-
* Added ''DatabaseFormat'' and ''PricingModel'' parameters to ''New-AzSqlInstance'', ''Set-AzSqlInstance''
254-
* Added breaking change message for ''New-AzSqlDatabaseFailoverGroup'' and ''Set-AzSqlDatabaseFailoverGroup''
255-
- The default value of ''FailoverPolicy'' parameter will be changed from ''Automatic'' to ''Manual''
256-
* Added a new cmdlet for Azure SQL Managed Instance refresh external governance status
257-
- ''Invoke-AzSqlInstanceExternalGovernanceStatusRefresh''
258-
* Updated ''Get-AzSqlInstance'' to support returning the ''ExternalGovernanceStatus'' property
259-
260-
Az.SqlVirtualMachine
261-
* Fixed a bug of parameter ''VirtualMachineResourceId'' of cmdlet ''New-AzSqlVM''.
262-
263-
Az.StackHCI
264-
* Fixed issue for WAC.
265-
* Restricted registration for 23H2 devices exclusively to cloud deployment.
266-
267-
Az.StackHCIVM
268-
* General availability for module Az.StackHCIVM
269-
270-
Az.Storage
271-
* Removed some code branches referencing Microsoft.Azure.Storage.Blob
272-
- ''Get-AzStorageBlob''
273-
* Updated the prompt message when deleting a share snapshot and the output format when listing
274-
- ''Remove-AzStorageShare''
275-
- ''Remove-AzRmStorageShare''
276-
- ''Get-AzRmStorageShare''
277-
278-
Az.Websites
279-
* Fixed Ambiguous Positional Argument for ''New-AzWebAppSlot''
199+
* Fixed deadlock in Bicep CLI execution. [#24133]
280200
'
281201

282202
# Prerelease string of this module

tools/AzPreview/AzPreview.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '11.3.0'
15+
ModuleVersion = '11.3.1'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -189,7 +189,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.15.1'; },
189189
@{ModuleName = 'Az.Reservations'; RequiredVersion = '0.12.0'; },
190190
@{ModuleName = 'Az.ResourceGraph'; RequiredVersion = '0.13.0'; },
191191
@{ModuleName = 'Az.ResourceMover'; RequiredVersion = '1.2.0'; },
192-
@{ModuleName = 'Az.Resources'; RequiredVersion = '6.15.0'; },
192+
@{ModuleName = 'Az.Resources'; RequiredVersion = '6.15.1'; },
193193
@{ModuleName = 'Az.Search'; RequiredVersion = '0.10.0'; },
194194
@{ModuleName = 'Az.Security'; RequiredVersion = '1.5.1'; },
195195
@{ModuleName = 'Az.SecurityInsights'; RequiredVersion = '3.1.1'; },

tools/AzPreview/ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 11.3.1 - February 2024
2+
#### Az.Resources 6.15.1
3+
* Fixed deadlock in Bicep CLI execution. [#24133]
4+
15
## 11.3.0 - February 2024
26
#### Az.Accounts 2.15.1
37
* Upgraded the reference of Azure PowerShell Common to 1.3.90-preview.

tools/Docs/az-ps-latest.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ pac133,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-rele
135135
pac134,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Reservations.0.12.0.nupkg;sourceType=sa]Az.Reservations,0.12.0
136136
pac135,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ResourceGraph.0.13.0.nupkg;sourceType=sa]Az.ResourceGraph,0.13.0
137137
pac136,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ResourceMover.1.2.0.nupkg;sourceType=sa]Az.ResourceMover,1.2.0
138-
pac137,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Resources.6.15.0.nupkg;sourceType=sa]Az.Resources,6.15.0
138+
pac137,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Resources.6.15.1.nupkg;sourceType=sa]Az.Resources,6.15.1
139139
pac138,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Search.0.10.0.nupkg;sourceType=sa]Az.Search,0.10.0
140140
pac139,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Security.1.5.1.nupkg;sourceType=sa]Az.Security,1.5.1
141141
pac140,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.SecurityInsights.3.1.1.nupkg;sourceType=sa]Az.SecurityInsights,3.1.1

tools/PublishModules.ps1

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,10 @@ param(
5656
[string]$RepositoryLocation,
5757

5858
[Parameter(Mandatory = $false, Position = 5)]
59-
[string]$NugetExe
59+
[string]$NugetExe,
60+
61+
[Parameter(Mandatory = $false, Position = 6)]
62+
[string]$TargetBuild
6063
)
6164

6265
Import-Module "$PSScriptRoot\PublishModules.psm1"
@@ -117,7 +120,7 @@ $env:PSModulePath = "$env:PSModulePath;$tempRepoPath"
117120
$Errors = $null
118121

119122
try {
120-
$modules = Get-AllModules -BuildConfig $BuildConfig -Scope $Scope -PublishLocal:$PublishLocal -IsNetCore:$IsNetCore
123+
$modules = Get-AllModules -BuildConfig $BuildConfig -Scope $Scope -TargetBuild $TargetBuild -PublishLocal:$PublishLocal -IsNetCore:$IsNetCore
121124
Add-AllModules -ModulePaths $modules -TempRepo $tempRepoName -TempRepoPath $tempRepoPath -NugetExe $NugetExe
122125
Publish-AllModules -ModulePaths $modules -ApiKey $apiKey -TempRepoPath $tempRepoPath -RepoLocation $repositoryLocation -NugetExe $NugetExe -PublishLocal:$PublishLocal
123126
} catch {

tools/PublishModules.psm1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,8 @@ function Get-AllModules {
267267
[ValidateNotNullOrEmpty()]
268268
[String]$Scope,
269269

270+
[String]$TargetBuild,
271+
270272
[switch]$PublishLocal,
271273

272274
[switch]$IsNetCore
@@ -275,7 +277,7 @@ function Get-AllModules {
275277
$clientModules = Get-ClientModules -BuildConfig $BuildConfig -Scope $Scope -PublishLocal:$PublishLocal -IsNetCore:$isNetCore
276278
Write-Host " "
277279

278-
if($clientModules.Length -le 2) {
280+
if($clientModules.Length -le 2 -and $TargetBuild -eq "true") {
279281
return @{
280282
ClientModules = $clientModules
281283
}

0 commit comments

Comments
 (0)