Skip to content

Commit be0a00e

Browse files
[Az.AppConfiguration] The code base is going to be refactored, the following cmdlet adds a BreakingChange announcement: (#27416)
Co-authored-by: Yash <[email protected]>
1 parent 40d4dae commit be0a00e

File tree

11 files changed

+163
-20
lines changed

11 files changed

+163
-20
lines changed

src/AppConfiguration/AppConfiguration.Autorest/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ generated
55
internal
66
exports
77
tools
8+
custom/autogen-model-cmdlets
89
test/*-TestResults.xml
910
license.txt
1011
/*.ps1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the Apache License, Version 2.0 (the ""License"");
3+
// you may not use this file except in compliance with the License.
4+
// You may obtain a copy of the License at
5+
// http://www.apache.org/licenses/LICENSE-2.0
6+
// Unless required by applicable law or agreed to in writing, software
7+
// distributed under the License is distributed on an ""AS IS"" BASIS,
8+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9+
// See the License for the specific language governing permissions and
10+
// limitations under the License.
11+
// Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code
12+
// is regenerated.
13+
14+
using System;
15+
using System.Reflection;
16+
using System.Runtime.CompilerServices;
17+
using System.Runtime.InteropServices;
18+
19+
[assembly: System.Reflection.AssemblyCompanyAttribute("Microsoft")]
20+
[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © Microsoft")]
21+
[assembly: System.Reflection.AssemblyProductAttribute("Microsoft Azure PowerShell")]
22+
[assembly: System.Reflection.AssemblyTitleAttribute("Microsoft Azure PowerShell - AppConfiguration")]
23+
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.4.0")]
24+
[assembly: System.Reflection.AssemblyVersionAttribute("1.4.0")]
25+
[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)]
26+
[assembly: System.CLSCompliantAttribute(false)]

src/AppConfiguration/AppConfiguration.Autorest/README.md

+18
Original file line numberDiff line numberDiff line change
@@ -152,4 +152,22 @@ directive:
152152
subject: ^ConfigurationStoreDeleted$
153153
set:
154154
subject: ConfigurationDeletedStore
155+
156+
#breaking change message
157+
- where:
158+
verb: Get
159+
subject: ConfigurationStore
160+
set:
161+
breaking-change:
162+
deprecated-cmdlet-output-type: Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.Api20220501.IConfigurationStore
163+
replacement-cmdlet-output-type: Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IConfigurationStore
164+
deprecated-output-properties:
165+
- PrivateEndpointConnection Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IPrivateEndpointConnectionReference
166+
new-output-properties:
167+
- PrivateEndpointConnection System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IPrivateEndpointConnectionReference]
168+
change-description:
169+
- The type of property 'PrivateEndpointConnection' of type 'Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.Api20220501.IConfigurationStore' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IPrivateEndpointConnectionReference' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IPrivateEndpointConnectionReference]'
170+
deprecated-by-version: 2.0.0
171+
deprecated-by-azversion: 14.0.0
172+
change-effective-date: 2025/05/19
155173
```

src/AppConfiguration/AppConfiguration.Autorest/custom/New-AzAppConfigurationStore.ps1

+2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ https://learn.microsoft.com/powershell/module/az.appconfiguration/new-azappconfi
3737
#>
3838
function New-AzAppConfigurationStore {
3939
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.Api20220501.IConfigurationStore])]
40+
[Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Runtime.GenericBreakingChangeAttribute("IdentityType will be removed. EnableSystemAssignedIdentity will be used to enable/disable system assigned identity and UserAssignedIdentity will be used to specify user assigned identities.", "14.0.0", "2.0.0", "2025/05/19")]
41+
[Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Runtime.OutputBreakingChangeAttribute("Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.Api20220501.IConfigurationStore", "14.0.0", "2.0.0", "2025/05/19", ReplacementCmdletOutputType = "Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IConfigurationStore", DeprecatedOutputProperties = ("PrivateEndpointConnection Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IPrivateEndpointConnectionReference"), NewOutputProperties = ("PrivateEndpointConnection System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IPrivateEndpointConnectionReference]"))]
4042
[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
4143
param(
4244
[Parameter(Mandatory)]

src/AppConfiguration/AppConfiguration.Autorest/custom/Update-AzAppConfigurationStore.ps1

+2
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ https://learn.microsoft.com/powershell/module/az.appconfiguration/update-azappco
5858
#>
5959
function Update-AzAppConfigurationStore {
6060
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.Api20220501.IConfigurationStore])]
61+
[Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Runtime.GenericBreakingChangeAttribute("IdentityType will be removed. EnableSystemAssignedIdentity will be used to enable/disable system assigned identity and UserAssignedIdentity will be used to specify user assigned identities.", "14.0.0", "2.0.0", "2025/05/19")]
62+
[Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Runtime.OutputBreakingChangeAttribute("Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.Api20220501.IConfigurationStore", "14.0.0", "2.0.0", "2025/05/19", ReplacementCmdletOutputType = "Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IConfigurationStore", DeprecatedOutputProperties = ("PrivateEndpointConnection Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IPrivateEndpointConnectionReference"), NewOutputProperties = ("PrivateEndpointConnection System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.AppConfiguration.Models.IPrivateEndpointConnectionReference]"))]
6163
[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
6264
param(
6365
[Parameter(ParameterSetName='UpdateExpanded', Mandatory)]

src/AppConfiguration/AppConfiguration.Autorest/docs/Az.AppConfiguration.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
Module Name: Az.AppConfiguration
3-
Module Guid: 3ff16738-381e-4d5a-9d90-c7ef6816f78e
3+
Module Guid: fdeffd10-1e23-4d50-ac3f-a00d552ddfca
44
Download Help Link: https://learn.microsoft.com/powershell/module/az.appconfiguration
55
Help Version: 1.0.0.0
66
Locale: en-US
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"generate_Id": "af765773-ca4c-4e21-96d3-40dec9a54ce9"
2+
"generate_Id": "7a7fcd26-31a2-4c82-ac9a-5a3f0f9098d9"
33
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Resources
2+
This directory can contain any additional resources for module that are not required at runtime. This directory **does not** get packaged with the module. If you have assets for custom implementation, place them into the `..\custom` folder.
3+
4+
## Info
5+
- Modifiable: yes
6+
- Generated: no
7+
- Committed: yes
8+
- Packaged: no
9+
10+
## Purpose
11+
Use this folder to put anything you want to keep around as part of the repository for the module, but is not something that is required for the module. For example, development files, packaged builds, or additional information. This is only intended to be used in repositories where the module's output directory is cleaned, but tangential resources for the module want to remain intact.

src/AppConfiguration/AppConfiguration.sln

+89-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.0.31903.59
@@ -19,55 +19,133 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accoun
1919
EndProject
2020
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AppConfiguration", "AppConfiguration\AppConfiguration.csproj", "{AAA0CCC9-9FD8-4D1E-98FE-62005C6A6A05}"
2121
EndProject
22-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.AppConfiguration", "..\..\generated\AppConfiguration\AppConfiguration.Autorest\Az.AppConfiguration.csproj", "{E6E86B91-7575-471B-AA10-2738B2674A5C}"
23-
EndProject
2422
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.AppConfigurationData", "..\..\generated\AppConfiguration\AppConfigurationData.Autorest\Az.AppConfigurationData.csproj", "{AAA3136C-E832-41E3-B774-3A4B4F997C3B}"
2523
EndProject
24+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "AppConfiguration.Autorest", "AppConfiguration.Autorest", "{0274B85D-B38C-5E54-FB34-3750CA0399A4}"
25+
EndProject
26+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.AppConfiguration", "..\..\generated\AppConfiguration\AppConfiguration.Autorest\Az.AppConfiguration.csproj", "{CE68DEC9-1B16-48E2-88ED-B2FF81504998}"
27+
EndProject
2628
Global
2729
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2830
Debug|Any CPU = Debug|Any CPU
31+
Debug|x64 = Debug|x64
32+
Debug|x86 = Debug|x86
2933
Release|Any CPU = Release|Any CPU
30-
EndGlobalSection
31-
GlobalSection(SolutionProperties) = preSolution
32-
HideSolutionNode = FALSE
34+
Release|x64 = Release|x64
35+
Release|x86 = Release|x86
3336
EndGlobalSection
3437
GlobalSection(ProjectConfigurationPlatforms) = postSolution
3538
{D4407E96-2E07-4C5F-B17F-97C4BF09DDF8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
3639
{D4407E96-2E07-4C5F-B17F-97C4BF09DDF8}.Debug|Any CPU.Build.0 = Debug|Any CPU
40+
{D4407E96-2E07-4C5F-B17F-97C4BF09DDF8}.Debug|x64.ActiveCfg = Debug|Any CPU
41+
{D4407E96-2E07-4C5F-B17F-97C4BF09DDF8}.Debug|x64.Build.0 = Debug|Any CPU
42+
{D4407E96-2E07-4C5F-B17F-97C4BF09DDF8}.Debug|x86.ActiveCfg = Debug|Any CPU
43+
{D4407E96-2E07-4C5F-B17F-97C4BF09DDF8}.Debug|x86.Build.0 = Debug|Any CPU
3744
{D4407E96-2E07-4C5F-B17F-97C4BF09DDF8}.Release|Any CPU.ActiveCfg = Release|Any CPU
3845
{D4407E96-2E07-4C5F-B17F-97C4BF09DDF8}.Release|Any CPU.Build.0 = Release|Any CPU
46+
{D4407E96-2E07-4C5F-B17F-97C4BF09DDF8}.Release|x64.ActiveCfg = Release|Any CPU
47+
{D4407E96-2E07-4C5F-B17F-97C4BF09DDF8}.Release|x64.Build.0 = Release|Any CPU
48+
{D4407E96-2E07-4C5F-B17F-97C4BF09DDF8}.Release|x86.ActiveCfg = Release|Any CPU
49+
{D4407E96-2E07-4C5F-B17F-97C4BF09DDF8}.Release|x86.Build.0 = Release|Any CPU
3950
{3FF87679-D2BF-4568-9A1C-44C9CE1411DE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
4051
{3FF87679-D2BF-4568-9A1C-44C9CE1411DE}.Debug|Any CPU.Build.0 = Debug|Any CPU
52+
{3FF87679-D2BF-4568-9A1C-44C9CE1411DE}.Debug|x64.ActiveCfg = Debug|Any CPU
53+
{3FF87679-D2BF-4568-9A1C-44C9CE1411DE}.Debug|x64.Build.0 = Debug|Any CPU
54+
{3FF87679-D2BF-4568-9A1C-44C9CE1411DE}.Debug|x86.ActiveCfg = Debug|Any CPU
55+
{3FF87679-D2BF-4568-9A1C-44C9CE1411DE}.Debug|x86.Build.0 = Debug|Any CPU
4156
{3FF87679-D2BF-4568-9A1C-44C9CE1411DE}.Release|Any CPU.ActiveCfg = Release|Any CPU
4257
{3FF87679-D2BF-4568-9A1C-44C9CE1411DE}.Release|Any CPU.Build.0 = Release|Any CPU
58+
{3FF87679-D2BF-4568-9A1C-44C9CE1411DE}.Release|x64.ActiveCfg = Release|Any CPU
59+
{3FF87679-D2BF-4568-9A1C-44C9CE1411DE}.Release|x64.Build.0 = Release|Any CPU
60+
{3FF87679-D2BF-4568-9A1C-44C9CE1411DE}.Release|x86.ActiveCfg = Release|Any CPU
61+
{3FF87679-D2BF-4568-9A1C-44C9CE1411DE}.Release|x86.Build.0 = Release|Any CPU
4362
{9250A178-F2DA-4336-87C4-937FA2ACD797}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
4463
{9250A178-F2DA-4336-87C4-937FA2ACD797}.Debug|Any CPU.Build.0 = Debug|Any CPU
64+
{9250A178-F2DA-4336-87C4-937FA2ACD797}.Debug|x64.ActiveCfg = Debug|Any CPU
65+
{9250A178-F2DA-4336-87C4-937FA2ACD797}.Debug|x64.Build.0 = Debug|Any CPU
66+
{9250A178-F2DA-4336-87C4-937FA2ACD797}.Debug|x86.ActiveCfg = Debug|Any CPU
67+
{9250A178-F2DA-4336-87C4-937FA2ACD797}.Debug|x86.Build.0 = Debug|Any CPU
4568
{9250A178-F2DA-4336-87C4-937FA2ACD797}.Release|Any CPU.ActiveCfg = Release|Any CPU
4669
{9250A178-F2DA-4336-87C4-937FA2ACD797}.Release|Any CPU.Build.0 = Release|Any CPU
70+
{9250A178-F2DA-4336-87C4-937FA2ACD797}.Release|x64.ActiveCfg = Release|Any CPU
71+
{9250A178-F2DA-4336-87C4-937FA2ACD797}.Release|x64.Build.0 = Release|Any CPU
72+
{9250A178-F2DA-4336-87C4-937FA2ACD797}.Release|x86.ActiveCfg = Release|Any CPU
73+
{9250A178-F2DA-4336-87C4-937FA2ACD797}.Release|x86.Build.0 = Release|Any CPU
4774
{EBA3011C-3C1E-449A-BF81-1284144857E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
4875
{EBA3011C-3C1E-449A-BF81-1284144857E3}.Debug|Any CPU.Build.0 = Debug|Any CPU
76+
{EBA3011C-3C1E-449A-BF81-1284144857E3}.Debug|x64.ActiveCfg = Debug|Any CPU
77+
{EBA3011C-3C1E-449A-BF81-1284144857E3}.Debug|x64.Build.0 = Debug|Any CPU
78+
{EBA3011C-3C1E-449A-BF81-1284144857E3}.Debug|x86.ActiveCfg = Debug|Any CPU
79+
{EBA3011C-3C1E-449A-BF81-1284144857E3}.Debug|x86.Build.0 = Debug|Any CPU
4980
{EBA3011C-3C1E-449A-BF81-1284144857E3}.Release|Any CPU.ActiveCfg = Release|Any CPU
5081
{EBA3011C-3C1E-449A-BF81-1284144857E3}.Release|Any CPU.Build.0 = Release|Any CPU
82+
{EBA3011C-3C1E-449A-BF81-1284144857E3}.Release|x64.ActiveCfg = Release|Any CPU
83+
{EBA3011C-3C1E-449A-BF81-1284144857E3}.Release|x64.Build.0 = Release|Any CPU
84+
{EBA3011C-3C1E-449A-BF81-1284144857E3}.Release|x86.ActiveCfg = Release|Any CPU
85+
{EBA3011C-3C1E-449A-BF81-1284144857E3}.Release|x86.Build.0 = Release|Any CPU
5186
{8B389447-87EC-484E-B771-5D387632713A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
5287
{8B389447-87EC-484E-B771-5D387632713A}.Debug|Any CPU.Build.0 = Debug|Any CPU
88+
{8B389447-87EC-484E-B771-5D387632713A}.Debug|x64.ActiveCfg = Debug|Any CPU
89+
{8B389447-87EC-484E-B771-5D387632713A}.Debug|x64.Build.0 = Debug|Any CPU
90+
{8B389447-87EC-484E-B771-5D387632713A}.Debug|x86.ActiveCfg = Debug|Any CPU
91+
{8B389447-87EC-484E-B771-5D387632713A}.Debug|x86.Build.0 = Debug|Any CPU
5392
{8B389447-87EC-484E-B771-5D387632713A}.Release|Any CPU.ActiveCfg = Release|Any CPU
5493
{8B389447-87EC-484E-B771-5D387632713A}.Release|Any CPU.Build.0 = Release|Any CPU
94+
{8B389447-87EC-484E-B771-5D387632713A}.Release|x64.ActiveCfg = Release|Any CPU
95+
{8B389447-87EC-484E-B771-5D387632713A}.Release|x64.Build.0 = Release|Any CPU
96+
{8B389447-87EC-484E-B771-5D387632713A}.Release|x86.ActiveCfg = Release|Any CPU
97+
{8B389447-87EC-484E-B771-5D387632713A}.Release|x86.Build.0 = Release|Any CPU
5598
{AFC99D4F-4983-4CC4-A284-4A763374FC3B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
5699
{AFC99D4F-4983-4CC4-A284-4A763374FC3B}.Debug|Any CPU.Build.0 = Debug|Any CPU
100+
{AFC99D4F-4983-4CC4-A284-4A763374FC3B}.Debug|x64.ActiveCfg = Debug|Any CPU
101+
{AFC99D4F-4983-4CC4-A284-4A763374FC3B}.Debug|x64.Build.0 = Debug|Any CPU
102+
{AFC99D4F-4983-4CC4-A284-4A763374FC3B}.Debug|x86.ActiveCfg = Debug|Any CPU
103+
{AFC99D4F-4983-4CC4-A284-4A763374FC3B}.Debug|x86.Build.0 = Debug|Any CPU
57104
{AFC99D4F-4983-4CC4-A284-4A763374FC3B}.Release|Any CPU.ActiveCfg = Release|Any CPU
58105
{AFC99D4F-4983-4CC4-A284-4A763374FC3B}.Release|Any CPU.Build.0 = Release|Any CPU
106+
{AFC99D4F-4983-4CC4-A284-4A763374FC3B}.Release|x64.ActiveCfg = Release|Any CPU
107+
{AFC99D4F-4983-4CC4-A284-4A763374FC3B}.Release|x64.Build.0 = Release|Any CPU
108+
{AFC99D4F-4983-4CC4-A284-4A763374FC3B}.Release|x86.ActiveCfg = Release|Any CPU
109+
{AFC99D4F-4983-4CC4-A284-4A763374FC3B}.Release|x86.Build.0 = Release|Any CPU
59110
{AAA0CCC9-9FD8-4D1E-98FE-62005C6A6A05}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
60111
{AAA0CCC9-9FD8-4D1E-98FE-62005C6A6A05}.Debug|Any CPU.Build.0 = Debug|Any CPU
112+
{AAA0CCC9-9FD8-4D1E-98FE-62005C6A6A05}.Debug|x64.ActiveCfg = Debug|Any CPU
113+
{AAA0CCC9-9FD8-4D1E-98FE-62005C6A6A05}.Debug|x64.Build.0 = Debug|Any CPU
114+
{AAA0CCC9-9FD8-4D1E-98FE-62005C6A6A05}.Debug|x86.ActiveCfg = Debug|Any CPU
115+
{AAA0CCC9-9FD8-4D1E-98FE-62005C6A6A05}.Debug|x86.Build.0 = Debug|Any CPU
61116
{AAA0CCC9-9FD8-4D1E-98FE-62005C6A6A05}.Release|Any CPU.ActiveCfg = Release|Any CPU
62117
{AAA0CCC9-9FD8-4D1E-98FE-62005C6A6A05}.Release|Any CPU.Build.0 = Release|Any CPU
63-
{E6E86B91-7575-471B-AA10-2738B2674A5C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
64-
{E6E86B91-7575-471B-AA10-2738B2674A5C}.Debug|Any CPU.Build.0 = Debug|Any CPU
65-
{E6E86B91-7575-471B-AA10-2738B2674A5C}.Release|Any CPU.ActiveCfg = Release|Any CPU
66-
{E6E86B91-7575-471B-AA10-2738B2674A5C}.Release|Any CPU.Build.0 = Release|Any CPU
118+
{AAA0CCC9-9FD8-4D1E-98FE-62005C6A6A05}.Release|x64.ActiveCfg = Release|Any CPU
119+
{AAA0CCC9-9FD8-4D1E-98FE-62005C6A6A05}.Release|x64.Build.0 = Release|Any CPU
120+
{AAA0CCC9-9FD8-4D1E-98FE-62005C6A6A05}.Release|x86.ActiveCfg = Release|Any CPU
121+
{AAA0CCC9-9FD8-4D1E-98FE-62005C6A6A05}.Release|x86.Build.0 = Release|Any CPU
67122
{AAA3136C-E832-41E3-B774-3A4B4F997C3B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
68123
{AAA3136C-E832-41E3-B774-3A4B4F997C3B}.Debug|Any CPU.Build.0 = Debug|Any CPU
124+
{AAA3136C-E832-41E3-B774-3A4B4F997C3B}.Debug|x64.ActiveCfg = Debug|Any CPU
125+
{AAA3136C-E832-41E3-B774-3A4B4F997C3B}.Debug|x64.Build.0 = Debug|Any CPU
126+
{AAA3136C-E832-41E3-B774-3A4B4F997C3B}.Debug|x86.ActiveCfg = Debug|Any CPU
127+
{AAA3136C-E832-41E3-B774-3A4B4F997C3B}.Debug|x86.Build.0 = Debug|Any CPU
69128
{AAA3136C-E832-41E3-B774-3A4B4F997C3B}.Release|Any CPU.ActiveCfg = Release|Any CPU
70129
{AAA3136C-E832-41E3-B774-3A4B4F997C3B}.Release|Any CPU.Build.0 = Release|Any CPU
130+
{AAA3136C-E832-41E3-B774-3A4B4F997C3B}.Release|x64.ActiveCfg = Release|Any CPU
131+
{AAA3136C-E832-41E3-B774-3A4B4F997C3B}.Release|x64.Build.0 = Release|Any CPU
132+
{AAA3136C-E832-41E3-B774-3A4B4F997C3B}.Release|x86.ActiveCfg = Release|Any CPU
133+
{AAA3136C-E832-41E3-B774-3A4B4F997C3B}.Release|x86.Build.0 = Release|Any CPU
134+
{CE68DEC9-1B16-48E2-88ED-B2FF81504998}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
135+
{CE68DEC9-1B16-48E2-88ED-B2FF81504998}.Debug|Any CPU.Build.0 = Debug|Any CPU
136+
{CE68DEC9-1B16-48E2-88ED-B2FF81504998}.Debug|x64.ActiveCfg = Debug|Any CPU
137+
{CE68DEC9-1B16-48E2-88ED-B2FF81504998}.Debug|x64.Build.0 = Debug|Any CPU
138+
{CE68DEC9-1B16-48E2-88ED-B2FF81504998}.Debug|x86.ActiveCfg = Debug|Any CPU
139+
{CE68DEC9-1B16-48E2-88ED-B2FF81504998}.Debug|x86.Build.0 = Debug|Any CPU
140+
{CE68DEC9-1B16-48E2-88ED-B2FF81504998}.Release|Any CPU.ActiveCfg = Release|Any CPU
141+
{CE68DEC9-1B16-48E2-88ED-B2FF81504998}.Release|Any CPU.Build.0 = Release|Any CPU
142+
{CE68DEC9-1B16-48E2-88ED-B2FF81504998}.Release|x64.ActiveCfg = Release|Any CPU
143+
{CE68DEC9-1B16-48E2-88ED-B2FF81504998}.Release|x64.Build.0 = Release|Any CPU
144+
{CE68DEC9-1B16-48E2-88ED-B2FF81504998}.Release|x86.ActiveCfg = Release|Any CPU
145+
{CE68DEC9-1B16-48E2-88ED-B2FF81504998}.Release|x86.Build.0 = Release|Any CPU
146+
EndGlobalSection
147+
GlobalSection(SolutionProperties) = preSolution
148+
HideSolutionNode = FALSE
71149
EndGlobalSection
72150
GlobalSection(NestedProjects) = preSolution
73151
{D4407E96-2E07-4C5F-B17F-97C4BF09DDF8} = {E4EA62CD-566F-439D-A591-A3969389B28E}
@@ -76,5 +154,6 @@ Global
76154
{EBA3011C-3C1E-449A-BF81-1284144857E3} = {E4EA62CD-566F-439D-A591-A3969389B28E}
77155
{8B389447-87EC-484E-B771-5D387632713A} = {E4EA62CD-566F-439D-A591-A3969389B28E}
78156
{AFC99D4F-4983-4CC4-A284-4A763374FC3B} = {E4EA62CD-566F-439D-A591-A3969389B28E}
157+
{CE68DEC9-1B16-48E2-88ED-B2FF81504998} = {0274B85D-B38C-5E54-FB34-3750CA0399A4}
79158
EndGlobalSection
80159
EndGlobal

0 commit comments

Comments
 (0)