Skip to content

Az.Advisor update generation tool version: autorest.powershell v3->v4 #28036

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

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
28 changes: 28 additions & 0 deletions src/Advisor/Advisor.Autorest/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the Apache License, Version 2.0 (the ""License"");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an ""AS IS"" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code
// is regenerated.

using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

[assembly: System.Reflection.AssemblyCompanyAttribute("Microsoft")]
[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © Microsoft")]
[assembly: System.Reflection.AssemblyProductAttribute("Microsoft Azure PowerShell")]
[assembly: System.Reflection.AssemblyTitleAttribute("Microsoft Azure PowerShell - Advisor")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("2.1.0")]
[assembly: System.Reflection.AssemblyVersionAttribute("2.1.0")]
[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)]
[assembly: System.CLSCompliantAttribute(false)]


19 changes: 5 additions & 14 deletions src/Advisor/Advisor.Autorest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,24 +43,15 @@ module-version: 0.1.0
# Normally, title is the service name
title: Advisor
subject-prefix: $(service-name)
resourcegroup-append: true

# If there are post APIs for some kinds of actions in the RP, you may need to
# uncomment following line to support viaIdentity for these post APIs
# identity-correction-for-post: true

# For new modules, please avoid setting 3.x using the use-extension method and instead, use 4.x as the default option
use-extension:
"@autorest/powershell": "3.x"

directive:
# Following is two common directive which are normally required in all the RPs
# 1. Remove the unexpanded parameter set
# 2. For New-* cmdlets, ViaIdentity is not required, so CreateViaIdentityExpanded is removed as well
- where:
variant: ^Create$|^CreateViaIdentity$|^CreateViaIdentityExpanded$|^Update$|^UpdateViaIdentity$
variant: ^(Create|Update)(?!.*?Expanded)
remove: true
# Remove ViaIdentity parameter set for New-* cmdlets
- where:
variant: ^CreateViaIdentity$|^CreateViaIdentityExpanded$
remove: true
# Remove the set-* cmdlet
- where:
verb: Set
remove: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Disable an Azure Advisor recommendation.
https://learn.microsoft.com/powershell/module/az.advisor/Disable-AzAdvisorRecommendation
#>
function Disable-AzAdvisorRecommendation{
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Advisor.Models.Api202001.IResourceRecommendationBase])]
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Advisor.Models.IResourceRecommendationBase])]
[CmdletBinding(DefaultParameterSetName='IdParameterSet', SupportsShouldProcess, PositionalBinding=$false)]
param(
[Parameter(ParameterSetName='IdParameterSet', Mandatory, HelpMessage='Id of the recommendation to be suppressed.')]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Enables Azure Advisor recommendation(s).
https://learn.microsoft.com/powershell/module/az.advisor/Enable-AzAdvisorRecommendation
#>
function Enable-AzAdvisorRecommendation{
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Advisor.Models.Api202001.IResourceRecommendationBase])]
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Advisor.Models.IResourceRecommendationBase])]
[CmdletBinding(DefaultParameterSetName='IdParameterSet', SupportsShouldProcess, PositionalBinding=$false)]
param(
[Parameter(ParameterSetName='IdParameterSet', Mandatory, HelpMessage='Id of the recommendation to be suppressed.')]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Obtains details of a cached recommendation.
https://learn.microsoft.com/powershell/module/az.advisor/Get-AzAdvisorRecommendation
#>
function Get-AzAdvisorRecommendation {
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Advisor.Models.Api202001.IResourceRecommendationBase])]
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Advisor.Models.IResourceRecommendationBase])]
[CmdletBinding(DefaultParameterSetName='ListByFilter', PositionalBinding=$false)]
param(
[Parameter(ParameterSetName='ListByName', Mandatory)]
Expand Down Expand Up @@ -149,4 +149,4 @@ function Get-AzAdvisorRecommendation {
if ($filter) {$PSBoundParameters['Filter'] = $filter}
. Az.Advisor.internal\Get-AzAdvisorRecommendation @PSBoundParameters
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Updates or creates the Azure Advisor Configuration.
https://learn.microsoft.com/powershell/module/az.advisor/Set-AzAdvisorConfiguration
#>
function Set-AzAdvisorConfiguration {
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Advisor.Models.Api202001.IConfigData])]
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Advisor.Models.IConfigData])]
[CmdletBinding(DefaultParameterSetName='CreateByLCT', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
param(
[Parameter(ParameterSetName='CreateByRG', Mandatory)]
Expand Down Expand Up @@ -57,9 +57,9 @@ function Set-AzAdvisorConfiguration {

[Parameter(ParameterSetName='CreateByLCT')]
[Parameter(ParameterSetName='CreateByInputObject')]
[ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.Advisor.Support.CpuThreshold])]
[Microsoft.Azure.PowerShell.Cmdlets.Advisor.PSArgumentCompleterAttribute("5", "10", "15", "20")]
[Microsoft.Azure.PowerShell.Cmdlets.Advisor.Category('Body')]
[Microsoft.Azure.PowerShell.Cmdlets.Advisor.Support.CpuThreshold]
[System.String]
# Minimum percentage threshold for Advisor low CPU utilization evaluation.
# Valid only for subscriptions.
# Valid values: 5 (default), 10, 15 or 20.
Expand Down
2 changes: 1 addition & 1 deletion src/Advisor/Advisor.Autorest/docs/Az.Advisor.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
Module Name: Az.Advisor
Module Guid: 6828a285-3916-4785-a754-9313c53b910f
Module Guid: 06deca0e-afbb-433e-b403-b6acac250c2a
Download Help Link: https://learn.microsoft.com/powershell/module/az.advisor
Help Version: 1.0.0.0
Locale: en-US
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ Accept wildcard characters: False

### -InputObject
The powershell object type PsAzureAdvisorResourceRecommendationBase returned by Get-AzAdvisorRecommendation call.
To construct, see NOTES section for INPUTOBJECT properties and create a hash table.

```yaml
Type: Microsoft.Azure.PowerShell.Cmdlets.Advisor.Models.IAdvisorIdentity
Expand Down Expand Up @@ -194,7 +193,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

## OUTPUTS

### Microsoft.Azure.PowerShell.Cmdlets.Advisor.Models.Api202001.IResourceRecommendationBase
### Microsoft.Azure.PowerShell.Cmdlets.Advisor.Models.IResourceRecommendationBase

## NOTES

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ Accept wildcard characters: False

### -InputObject
The powershell object type PsAzureAdvisorResourceRecommendationBase returned by Get-AzAdvisorRecommendation call.
To construct, see NOTES section for INPUTOBJECT properties and create a hash table.

```yaml
Type: Microsoft.Azure.PowerShell.Cmdlets.Advisor.Models.IAdvisorIdentity
Expand Down Expand Up @@ -179,7 +178,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

## OUTPUTS

### Microsoft.Azure.PowerShell.Cmdlets.Advisor.Models.Api202001.IResourceRecommendationBase
### Microsoft.Azure.PowerShell.Cmdlets.Advisor.Models.IResourceRecommendationBase

## NOTES

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

## OUTPUTS

### Microsoft.Azure.PowerShell.Cmdlets.Advisor.Models.Api202001.IConfigData
### Microsoft.Azure.PowerShell.Cmdlets.Advisor.Models.IConfigData

## NOTES

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

## OUTPUTS

### Microsoft.Azure.PowerShell.Cmdlets.Advisor.Models.Api202001.IResourceRecommendationBase
### Microsoft.Azure.PowerShell.Cmdlets.Advisor.Models.IResourceRecommendationBase

## NOTES

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ Updates or creates the Azure Advisor Configuration.

### CreateByLCT (Default)
```
Set-AzAdvisorConfiguration [-SubscriptionId <String>] [-Exclude] [-LowCpuThreshold <CpuThreshold>]
Set-AzAdvisorConfiguration [-SubscriptionId <String>] [-Exclude] [-LowCpuThreshold <String>]
[-DefaultProfile <PSObject>] [-Confirm] [-WhatIf] [<CommonParameters>]
```

### CreateByInputObject
```
Set-AzAdvisorConfiguration -InputObject <IAdvisorIdentity> [-Exclude] [-LowCpuThreshold <CpuThreshold>]
Set-AzAdvisorConfiguration -InputObject <IAdvisorIdentity> [-Exclude] [-LowCpuThreshold <String>]
[-DefaultProfile <PSObject>] [-Confirm] [-WhatIf] [<CommonParameters>]
```

Expand Down Expand Up @@ -116,7 +116,7 @@ Valid only for subscriptions.
Valid values: 5 (default), 10, 15 or 20.

```yaml
Type: Microsoft.Azure.PowerShell.Cmdlets.Advisor.Support.CpuThreshold
Type: System.String
Parameter Sets: CreateByInputObject, CreateByLCT
Aliases:

Expand Down Expand Up @@ -197,7 +197,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

## OUTPUTS

### Microsoft.Azure.PowerShell.Cmdlets.Advisor.Models.Api202001.IConfigData
### Microsoft.Azure.PowerShell.Cmdlets.Advisor.Models.IConfigData

## NOTES

Expand Down
2 changes: 1 addition & 1 deletion src/Advisor/Advisor.Autorest/generate-info.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"generate_Id": "661dccf0-7c82-45ce-bbc9-81c87a43eac3"
"generate_Id": "6a51182c-cecf-46b6-a4b9-8a4d5aea7ff0"
}
11 changes: 11 additions & 0 deletions src/Advisor/Advisor.Autorest/resources/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Resources
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.

## Info
- Modifiable: yes
- Generated: no
- Committed: yes
- Packaged: no

## Purpose
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.
89 changes: 80 additions & 9 deletions src/Advisor/Advisor.sln
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@


Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
Expand All @@ -19,49 +19,119 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accoun
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Advisor", "Advisor\Advisor.csproj", "{FC2C296A-E36A-4E6E-85FB-AFCF51D40B1B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Advisor", "..\..\generated\Advisor\Advisor.Autorest\Az.Advisor.csproj", "{EEEB4BCB-9D78-44A1-8666-36E805A5C773}"
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Advisor.Autorest", "Advisor.Autorest", "{11D148E3-9BCC-C4A6-0910-9111B1AC8EC4}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Advisor", "..\..\generated\Advisor\Advisor.Autorest\Az.Advisor.csproj", "{1FFDF0D9-27F8-4D60-9529-5A5D9CF115D3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{3F279170-3991-4589-8093-5106A6B7AA69}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3F279170-3991-4589-8093-5106A6B7AA69}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3F279170-3991-4589-8093-5106A6B7AA69}.Debug|x64.ActiveCfg = Debug|Any CPU
{3F279170-3991-4589-8093-5106A6B7AA69}.Debug|x64.Build.0 = Debug|Any CPU
{3F279170-3991-4589-8093-5106A6B7AA69}.Debug|x86.ActiveCfg = Debug|Any CPU
{3F279170-3991-4589-8093-5106A6B7AA69}.Debug|x86.Build.0 = Debug|Any CPU
{3F279170-3991-4589-8093-5106A6B7AA69}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3F279170-3991-4589-8093-5106A6B7AA69}.Release|Any CPU.Build.0 = Release|Any CPU
{3F279170-3991-4589-8093-5106A6B7AA69}.Release|x64.ActiveCfg = Release|Any CPU
{3F279170-3991-4589-8093-5106A6B7AA69}.Release|x64.Build.0 = Release|Any CPU
{3F279170-3991-4589-8093-5106A6B7AA69}.Release|x86.ActiveCfg = Release|Any CPU
{3F279170-3991-4589-8093-5106A6B7AA69}.Release|x86.Build.0 = Release|Any CPU
{9D3AC600-6D08-42BF-BC46-8B7E84B4108C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9D3AC600-6D08-42BF-BC46-8B7E84B4108C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9D3AC600-6D08-42BF-BC46-8B7E84B4108C}.Debug|x64.ActiveCfg = Debug|Any CPU
{9D3AC600-6D08-42BF-BC46-8B7E84B4108C}.Debug|x64.Build.0 = Debug|Any CPU
{9D3AC600-6D08-42BF-BC46-8B7E84B4108C}.Debug|x86.ActiveCfg = Debug|Any CPU
{9D3AC600-6D08-42BF-BC46-8B7E84B4108C}.Debug|x86.Build.0 = Debug|Any CPU
{9D3AC600-6D08-42BF-BC46-8B7E84B4108C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9D3AC600-6D08-42BF-BC46-8B7E84B4108C}.Release|Any CPU.Build.0 = Release|Any CPU
{9D3AC600-6D08-42BF-BC46-8B7E84B4108C}.Release|x64.ActiveCfg = Release|Any CPU
{9D3AC600-6D08-42BF-BC46-8B7E84B4108C}.Release|x64.Build.0 = Release|Any CPU
{9D3AC600-6D08-42BF-BC46-8B7E84B4108C}.Release|x86.ActiveCfg = Release|Any CPU
{9D3AC600-6D08-42BF-BC46-8B7E84B4108C}.Release|x86.Build.0 = Release|Any CPU
{258BA7DB-F859-4931-9E48-391E47DF4FAE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{258BA7DB-F859-4931-9E48-391E47DF4FAE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{258BA7DB-F859-4931-9E48-391E47DF4FAE}.Debug|x64.ActiveCfg = Debug|Any CPU
{258BA7DB-F859-4931-9E48-391E47DF4FAE}.Debug|x64.Build.0 = Debug|Any CPU
{258BA7DB-F859-4931-9E48-391E47DF4FAE}.Debug|x86.ActiveCfg = Debug|Any CPU
{258BA7DB-F859-4931-9E48-391E47DF4FAE}.Debug|x86.Build.0 = Debug|Any CPU
{258BA7DB-F859-4931-9E48-391E47DF4FAE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{258BA7DB-F859-4931-9E48-391E47DF4FAE}.Release|Any CPU.Build.0 = Release|Any CPU
{258BA7DB-F859-4931-9E48-391E47DF4FAE}.Release|x64.ActiveCfg = Release|Any CPU
{258BA7DB-F859-4931-9E48-391E47DF4FAE}.Release|x64.Build.0 = Release|Any CPU
{258BA7DB-F859-4931-9E48-391E47DF4FAE}.Release|x86.ActiveCfg = Release|Any CPU
{258BA7DB-F859-4931-9E48-391E47DF4FAE}.Release|x86.Build.0 = Release|Any CPU
{8B1E5E8E-AA46-431F-A753-A62EB03C9CC0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8B1E5E8E-AA46-431F-A753-A62EB03C9CC0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8B1E5E8E-AA46-431F-A753-A62EB03C9CC0}.Debug|x64.ActiveCfg = Debug|Any CPU
{8B1E5E8E-AA46-431F-A753-A62EB03C9CC0}.Debug|x64.Build.0 = Debug|Any CPU
{8B1E5E8E-AA46-431F-A753-A62EB03C9CC0}.Debug|x86.ActiveCfg = Debug|Any CPU
{8B1E5E8E-AA46-431F-A753-A62EB03C9CC0}.Debug|x86.Build.0 = Debug|Any CPU
{8B1E5E8E-AA46-431F-A753-A62EB03C9CC0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8B1E5E8E-AA46-431F-A753-A62EB03C9CC0}.Release|Any CPU.Build.0 = Release|Any CPU
{8B1E5E8E-AA46-431F-A753-A62EB03C9CC0}.Release|x64.ActiveCfg = Release|Any CPU
{8B1E5E8E-AA46-431F-A753-A62EB03C9CC0}.Release|x64.Build.0 = Release|Any CPU
{8B1E5E8E-AA46-431F-A753-A62EB03C9CC0}.Release|x86.ActiveCfg = Release|Any CPU
{8B1E5E8E-AA46-431F-A753-A62EB03C9CC0}.Release|x86.Build.0 = Release|Any CPU
{414C668F-B3D7-420A-A5ED-428110F2C789}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{414C668F-B3D7-420A-A5ED-428110F2C789}.Debug|Any CPU.Build.0 = Debug|Any CPU
{414C668F-B3D7-420A-A5ED-428110F2C789}.Debug|x64.ActiveCfg = Debug|Any CPU
{414C668F-B3D7-420A-A5ED-428110F2C789}.Debug|x64.Build.0 = Debug|Any CPU
{414C668F-B3D7-420A-A5ED-428110F2C789}.Debug|x86.ActiveCfg = Debug|Any CPU
{414C668F-B3D7-420A-A5ED-428110F2C789}.Debug|x86.Build.0 = Debug|Any CPU
{414C668F-B3D7-420A-A5ED-428110F2C789}.Release|Any CPU.ActiveCfg = Release|Any CPU
{414C668F-B3D7-420A-A5ED-428110F2C789}.Release|Any CPU.Build.0 = Release|Any CPU
{414C668F-B3D7-420A-A5ED-428110F2C789}.Release|x64.ActiveCfg = Release|Any CPU
{414C668F-B3D7-420A-A5ED-428110F2C789}.Release|x64.Build.0 = Release|Any CPU
{414C668F-B3D7-420A-A5ED-428110F2C789}.Release|x86.ActiveCfg = Release|Any CPU
{414C668F-B3D7-420A-A5ED-428110F2C789}.Release|x86.Build.0 = Release|Any CPU
{FB6CFA0C-C3B4-46B2-B1E0-889F58F6DF4F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FB6CFA0C-C3B4-46B2-B1E0-889F58F6DF4F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FB6CFA0C-C3B4-46B2-B1E0-889F58F6DF4F}.Debug|x64.ActiveCfg = Debug|Any CPU
{FB6CFA0C-C3B4-46B2-B1E0-889F58F6DF4F}.Debug|x64.Build.0 = Debug|Any CPU
{FB6CFA0C-C3B4-46B2-B1E0-889F58F6DF4F}.Debug|x86.ActiveCfg = Debug|Any CPU
{FB6CFA0C-C3B4-46B2-B1E0-889F58F6DF4F}.Debug|x86.Build.0 = Debug|Any CPU
{FB6CFA0C-C3B4-46B2-B1E0-889F58F6DF4F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FB6CFA0C-C3B4-46B2-B1E0-889F58F6DF4F}.Release|Any CPU.Build.0 = Release|Any CPU
{FB6CFA0C-C3B4-46B2-B1E0-889F58F6DF4F}.Release|x64.ActiveCfg = Release|Any CPU
{FB6CFA0C-C3B4-46B2-B1E0-889F58F6DF4F}.Release|x64.Build.0 = Release|Any CPU
{FB6CFA0C-C3B4-46B2-B1E0-889F58F6DF4F}.Release|x86.ActiveCfg = Release|Any CPU
{FB6CFA0C-C3B4-46B2-B1E0-889F58F6DF4F}.Release|x86.Build.0 = Release|Any CPU
{FC2C296A-E36A-4E6E-85FB-AFCF51D40B1B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FC2C296A-E36A-4E6E-85FB-AFCF51D40B1B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FC2C296A-E36A-4E6E-85FB-AFCF51D40B1B}.Debug|x64.ActiveCfg = Debug|Any CPU
{FC2C296A-E36A-4E6E-85FB-AFCF51D40B1B}.Debug|x64.Build.0 = Debug|Any CPU
{FC2C296A-E36A-4E6E-85FB-AFCF51D40B1B}.Debug|x86.ActiveCfg = Debug|Any CPU
{FC2C296A-E36A-4E6E-85FB-AFCF51D40B1B}.Debug|x86.Build.0 = Debug|Any CPU
{FC2C296A-E36A-4E6E-85FB-AFCF51D40B1B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FC2C296A-E36A-4E6E-85FB-AFCF51D40B1B}.Release|Any CPU.Build.0 = Release|Any CPU
{EEEB4BCB-9D78-44A1-8666-36E805A5C773}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EEEB4BCB-9D78-44A1-8666-36E805A5C773}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EEEB4BCB-9D78-44A1-8666-36E805A5C773}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EEEB4BCB-9D78-44A1-8666-36E805A5C773}.Release|Any CPU.Build.0 = Release|Any CPU
{FC2C296A-E36A-4E6E-85FB-AFCF51D40B1B}.Release|x64.ActiveCfg = Release|Any CPU
{FC2C296A-E36A-4E6E-85FB-AFCF51D40B1B}.Release|x64.Build.0 = Release|Any CPU
{FC2C296A-E36A-4E6E-85FB-AFCF51D40B1B}.Release|x86.ActiveCfg = Release|Any CPU
{FC2C296A-E36A-4E6E-85FB-AFCF51D40B1B}.Release|x86.Build.0 = Release|Any CPU
{1FFDF0D9-27F8-4D60-9529-5A5D9CF115D3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1FFDF0D9-27F8-4D60-9529-5A5D9CF115D3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1FFDF0D9-27F8-4D60-9529-5A5D9CF115D3}.Debug|x64.ActiveCfg = Debug|Any CPU
{1FFDF0D9-27F8-4D60-9529-5A5D9CF115D3}.Debug|x64.Build.0 = Debug|Any CPU
{1FFDF0D9-27F8-4D60-9529-5A5D9CF115D3}.Debug|x86.ActiveCfg = Debug|Any CPU
{1FFDF0D9-27F8-4D60-9529-5A5D9CF115D3}.Debug|x86.Build.0 = Debug|Any CPU
{1FFDF0D9-27F8-4D60-9529-5A5D9CF115D3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1FFDF0D9-27F8-4D60-9529-5A5D9CF115D3}.Release|Any CPU.Build.0 = Release|Any CPU
{1FFDF0D9-27F8-4D60-9529-5A5D9CF115D3}.Release|x64.ActiveCfg = Release|Any CPU
{1FFDF0D9-27F8-4D60-9529-5A5D9CF115D3}.Release|x64.Build.0 = Release|Any CPU
{1FFDF0D9-27F8-4D60-9529-5A5D9CF115D3}.Release|x86.ActiveCfg = Release|Any CPU
{1FFDF0D9-27F8-4D60-9529-5A5D9CF115D3}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{3F279170-3991-4589-8093-5106A6B7AA69} = {F9AB9B33-370D-450F-BFB6-A0B29E4B8A83}
Expand All @@ -70,5 +140,6 @@ Global
{8B1E5E8E-AA46-431F-A753-A62EB03C9CC0} = {F9AB9B33-370D-450F-BFB6-A0B29E4B8A83}
{414C668F-B3D7-420A-A5ED-428110F2C789} = {F9AB9B33-370D-450F-BFB6-A0B29E4B8A83}
{FB6CFA0C-C3B4-46B2-B1E0-889F58F6DF4F} = {F9AB9B33-370D-450F-BFB6-A0B29E4B8A83}
{1FFDF0D9-27F8-4D60-9529-5A5D9CF115D3} = {11D148E3-9BCC-C4A6-0910-9111B1AC8EC4}
EndGlobalSection
EndGlobal
Loading
Loading