Skip to content

Commit 8109c12

Browse files
azure-powershell-botLucasYao93msJinLei
authored
Migrate App from generation to main (#20502)
* Move App to main * Update Changelog.md * Update Changelog.md Add empty line between upcoming release and the latest released version. Co-authored-by: Lucas Yao <[email protected]> Co-authored-by: Jin Lei <[email protected]>
1 parent 48c591e commit 8109c12

File tree

52 files changed

+132
-157
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+132
-157
lines changed

src/App/App.sln

Lines changed: 32 additions & 84 deletions
Original file line numberDiff line numberDiff line change
@@ -1,104 +1,52 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 16
4-
VisualStudioVersion = 16.6.30114.105
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.0.31903.59
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Accounts", "..\Accounts\Accounts\Accounts.csproj", "{C1CF396F-9CD2-4908-8263-BEF049864BD8}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Accounts", "..\Accounts\Accounts\Accounts.csproj", "{2525238E-CD02-43EF-94BD-CB117D4570C2}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication", "..\Accounts\Authentication\Authentication.csproj", "{45352CBC-E056-4B57-B472-B2BD182E0026}"
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication", "..\Accounts\Authentication\Authentication.csproj", "{C7AB3753-6093-4836-8084-A7E1BFE4A8E3}"
99
EndProject
10-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication.ResourceManager", "..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{14E328C5-1E40-43D3-B005-D8F1A7E77FD0}"
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication.ResourceManager", "..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{1C91DD2D-EA46-463D-ACD8-22DA3FE8847F}"
1111
EndProject
12-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthenticationAssemblyLoadContext", "..\Accounts\AuthenticationAssemblyLoadContext\AuthenticationAssemblyLoadContext.csproj", "{DD366FE2-BB7E-4EC9-85C9-40859420C99C}"
12+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthenticationAssemblyLoadContext", "..\Accounts\AuthenticationAssemblyLoadContext\AuthenticationAssemblyLoadContext.csproj", "{9F393E0D-1617-4489-B6AB-4E91E3AEE397}"
1313
EndProject
14-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accounts\Authenticators\Authenticators.csproj", "{84FFA918-3D46-42AE-8A98-ADB224D49B71}"
14+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accounts\Authenticators\Authenticators.csproj", "{C7153CD1-8A3E-45A9-A55B-6CFEA65F792B}"
1515
EndProject
16-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.App", "Az.App.csproj", "{972EAEE7-93B6-4E4E-BD3A-C7EEAF7C6399}"
16+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.App", "Az.App.csproj", "{2C332323-0AC8-4391-9DC4-38A5C77B985D}"
1717
EndProject
1818
Global
1919
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2020
Debug|Any CPU = Debug|Any CPU
21-
Debug|x64 = Debug|x64
22-
Debug|x86 = Debug|x86
2321
Release|Any CPU = Release|Any CPU
24-
Release|x64 = Release|x64
25-
Release|x86 = Release|x86
2622
EndGlobalSection
2723
GlobalSection(SolutionProperties) = preSolution
2824
HideSolutionNode = FALSE
2925
EndGlobalSection
3026
GlobalSection(ProjectConfigurationPlatforms) = postSolution
31-
{C1CF396F-9CD2-4908-8263-BEF049864BD8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
32-
{C1CF396F-9CD2-4908-8263-BEF049864BD8}.Debug|Any CPU.Build.0 = Debug|Any CPU
33-
{C1CF396F-9CD2-4908-8263-BEF049864BD8}.Debug|x64.ActiveCfg = Debug|Any CPU
34-
{C1CF396F-9CD2-4908-8263-BEF049864BD8}.Debug|x64.Build.0 = Debug|Any CPU
35-
{C1CF396F-9CD2-4908-8263-BEF049864BD8}.Debug|x86.ActiveCfg = Debug|Any CPU
36-
{C1CF396F-9CD2-4908-8263-BEF049864BD8}.Debug|x86.Build.0 = Debug|Any CPU
37-
{C1CF396F-9CD2-4908-8263-BEF049864BD8}.Release|Any CPU.ActiveCfg = Release|Any CPU
38-
{C1CF396F-9CD2-4908-8263-BEF049864BD8}.Release|Any CPU.Build.0 = Release|Any CPU
39-
{C1CF396F-9CD2-4908-8263-BEF049864BD8}.Release|x64.ActiveCfg = Release|Any CPU
40-
{C1CF396F-9CD2-4908-8263-BEF049864BD8}.Release|x64.Build.0 = Release|Any CPU
41-
{C1CF396F-9CD2-4908-8263-BEF049864BD8}.Release|x86.ActiveCfg = Release|Any CPU
42-
{C1CF396F-9CD2-4908-8263-BEF049864BD8}.Release|x86.Build.0 = Release|Any CPU
43-
{45352CBC-E056-4B57-B472-B2BD182E0026}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
44-
{45352CBC-E056-4B57-B472-B2BD182E0026}.Debug|Any CPU.Build.0 = Debug|Any CPU
45-
{45352CBC-E056-4B57-B472-B2BD182E0026}.Debug|x64.ActiveCfg = Debug|Any CPU
46-
{45352CBC-E056-4B57-B472-B2BD182E0026}.Debug|x64.Build.0 = Debug|Any CPU
47-
{45352CBC-E056-4B57-B472-B2BD182E0026}.Debug|x86.ActiveCfg = Debug|Any CPU
48-
{45352CBC-E056-4B57-B472-B2BD182E0026}.Debug|x86.Build.0 = Debug|Any CPU
49-
{45352CBC-E056-4B57-B472-B2BD182E0026}.Release|Any CPU.ActiveCfg = Release|Any CPU
50-
{45352CBC-E056-4B57-B472-B2BD182E0026}.Release|Any CPU.Build.0 = Release|Any CPU
51-
{45352CBC-E056-4B57-B472-B2BD182E0026}.Release|x64.ActiveCfg = Release|Any CPU
52-
{45352CBC-E056-4B57-B472-B2BD182E0026}.Release|x64.Build.0 = Release|Any CPU
53-
{45352CBC-E056-4B57-B472-B2BD182E0026}.Release|x86.ActiveCfg = Release|Any CPU
54-
{45352CBC-E056-4B57-B472-B2BD182E0026}.Release|x86.Build.0 = Release|Any CPU
55-
{14E328C5-1E40-43D3-B005-D8F1A7E77FD0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
56-
{14E328C5-1E40-43D3-B005-D8F1A7E77FD0}.Debug|Any CPU.Build.0 = Debug|Any CPU
57-
{14E328C5-1E40-43D3-B005-D8F1A7E77FD0}.Debug|x64.ActiveCfg = Debug|Any CPU
58-
{14E328C5-1E40-43D3-B005-D8F1A7E77FD0}.Debug|x64.Build.0 = Debug|Any CPU
59-
{14E328C5-1E40-43D3-B005-D8F1A7E77FD0}.Debug|x86.ActiveCfg = Debug|Any CPU
60-
{14E328C5-1E40-43D3-B005-D8F1A7E77FD0}.Debug|x86.Build.0 = Debug|Any CPU
61-
{14E328C5-1E40-43D3-B005-D8F1A7E77FD0}.Release|Any CPU.ActiveCfg = Release|Any CPU
62-
{14E328C5-1E40-43D3-B005-D8F1A7E77FD0}.Release|Any CPU.Build.0 = Release|Any CPU
63-
{14E328C5-1E40-43D3-B005-D8F1A7E77FD0}.Release|x64.ActiveCfg = Release|Any CPU
64-
{14E328C5-1E40-43D3-B005-D8F1A7E77FD0}.Release|x64.Build.0 = Release|Any CPU
65-
{14E328C5-1E40-43D3-B005-D8F1A7E77FD0}.Release|x86.ActiveCfg = Release|Any CPU
66-
{14E328C5-1E40-43D3-B005-D8F1A7E77FD0}.Release|x86.Build.0 = Release|Any CPU
67-
{DD366FE2-BB7E-4EC9-85C9-40859420C99C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
68-
{DD366FE2-BB7E-4EC9-85C9-40859420C99C}.Debug|Any CPU.Build.0 = Debug|Any CPU
69-
{DD366FE2-BB7E-4EC9-85C9-40859420C99C}.Debug|x64.ActiveCfg = Debug|Any CPU
70-
{DD366FE2-BB7E-4EC9-85C9-40859420C99C}.Debug|x64.Build.0 = Debug|Any CPU
71-
{DD366FE2-BB7E-4EC9-85C9-40859420C99C}.Debug|x86.ActiveCfg = Debug|Any CPU
72-
{DD366FE2-BB7E-4EC9-85C9-40859420C99C}.Debug|x86.Build.0 = Debug|Any CPU
73-
{DD366FE2-BB7E-4EC9-85C9-40859420C99C}.Release|Any CPU.ActiveCfg = Release|Any CPU
74-
{DD366FE2-BB7E-4EC9-85C9-40859420C99C}.Release|Any CPU.Build.0 = Release|Any CPU
75-
{DD366FE2-BB7E-4EC9-85C9-40859420C99C}.Release|x64.ActiveCfg = Release|Any CPU
76-
{DD366FE2-BB7E-4EC9-85C9-40859420C99C}.Release|x64.Build.0 = Release|Any CPU
77-
{DD366FE2-BB7E-4EC9-85C9-40859420C99C}.Release|x86.ActiveCfg = Release|Any CPU
78-
{DD366FE2-BB7E-4EC9-85C9-40859420C99C}.Release|x86.Build.0 = Release|Any CPU
79-
{84FFA918-3D46-42AE-8A98-ADB224D49B71}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
80-
{84FFA918-3D46-42AE-8A98-ADB224D49B71}.Debug|Any CPU.Build.0 = Debug|Any CPU
81-
{84FFA918-3D46-42AE-8A98-ADB224D49B71}.Debug|x64.ActiveCfg = Debug|Any CPU
82-
{84FFA918-3D46-42AE-8A98-ADB224D49B71}.Debug|x64.Build.0 = Debug|Any CPU
83-
{84FFA918-3D46-42AE-8A98-ADB224D49B71}.Debug|x86.ActiveCfg = Debug|Any CPU
84-
{84FFA918-3D46-42AE-8A98-ADB224D49B71}.Debug|x86.Build.0 = Debug|Any CPU
85-
{84FFA918-3D46-42AE-8A98-ADB224D49B71}.Release|Any CPU.ActiveCfg = Release|Any CPU
86-
{84FFA918-3D46-42AE-8A98-ADB224D49B71}.Release|Any CPU.Build.0 = Release|Any CPU
87-
{84FFA918-3D46-42AE-8A98-ADB224D49B71}.Release|x64.ActiveCfg = Release|Any CPU
88-
{84FFA918-3D46-42AE-8A98-ADB224D49B71}.Release|x64.Build.0 = Release|Any CPU
89-
{84FFA918-3D46-42AE-8A98-ADB224D49B71}.Release|x86.ActiveCfg = Release|Any CPU
90-
{84FFA918-3D46-42AE-8A98-ADB224D49B71}.Release|x86.Build.0 = Release|Any CPU
91-
{972EAEE7-93B6-4E4E-BD3A-C7EEAF7C6399}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
92-
{972EAEE7-93B6-4E4E-BD3A-C7EEAF7C6399}.Debug|Any CPU.Build.0 = Debug|Any CPU
93-
{972EAEE7-93B6-4E4E-BD3A-C7EEAF7C6399}.Debug|x64.ActiveCfg = Debug|Any CPU
94-
{972EAEE7-93B6-4E4E-BD3A-C7EEAF7C6399}.Debug|x64.Build.0 = Debug|Any CPU
95-
{972EAEE7-93B6-4E4E-BD3A-C7EEAF7C6399}.Debug|x86.ActiveCfg = Debug|Any CPU
96-
{972EAEE7-93B6-4E4E-BD3A-C7EEAF7C6399}.Debug|x86.Build.0 = Debug|Any CPU
97-
{972EAEE7-93B6-4E4E-BD3A-C7EEAF7C6399}.Release|Any CPU.ActiveCfg = Release|Any CPU
98-
{972EAEE7-93B6-4E4E-BD3A-C7EEAF7C6399}.Release|Any CPU.Build.0 = Release|Any CPU
99-
{972EAEE7-93B6-4E4E-BD3A-C7EEAF7C6399}.Release|x64.ActiveCfg = Release|Any CPU
100-
{972EAEE7-93B6-4E4E-BD3A-C7EEAF7C6399}.Release|x64.Build.0 = Release|Any CPU
101-
{972EAEE7-93B6-4E4E-BD3A-C7EEAF7C6399}.Release|x86.ActiveCfg = Release|Any CPU
102-
{972EAEE7-93B6-4E4E-BD3A-C7EEAF7C6399}.Release|x86.Build.0 = Release|Any CPU
27+
{2525238E-CD02-43EF-94BD-CB117D4570C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
28+
{2525238E-CD02-43EF-94BD-CB117D4570C2}.Debug|Any CPU.Build.0 = Debug|Any CPU
29+
{2525238E-CD02-43EF-94BD-CB117D4570C2}.Release|Any CPU.ActiveCfg = Release|Any CPU
30+
{2525238E-CD02-43EF-94BD-CB117D4570C2}.Release|Any CPU.Build.0 = Release|Any CPU
31+
{C7AB3753-6093-4836-8084-A7E1BFE4A8E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
32+
{C7AB3753-6093-4836-8084-A7E1BFE4A8E3}.Debug|Any CPU.Build.0 = Debug|Any CPU
33+
{C7AB3753-6093-4836-8084-A7E1BFE4A8E3}.Release|Any CPU.ActiveCfg = Release|Any CPU
34+
{C7AB3753-6093-4836-8084-A7E1BFE4A8E3}.Release|Any CPU.Build.0 = Release|Any CPU
35+
{1C91DD2D-EA46-463D-ACD8-22DA3FE8847F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
36+
{1C91DD2D-EA46-463D-ACD8-22DA3FE8847F}.Debug|Any CPU.Build.0 = Debug|Any CPU
37+
{1C91DD2D-EA46-463D-ACD8-22DA3FE8847F}.Release|Any CPU.ActiveCfg = Release|Any CPU
38+
{1C91DD2D-EA46-463D-ACD8-22DA3FE8847F}.Release|Any CPU.Build.0 = Release|Any CPU
39+
{9F393E0D-1617-4489-B6AB-4E91E3AEE397}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
40+
{9F393E0D-1617-4489-B6AB-4E91E3AEE397}.Debug|Any CPU.Build.0 = Debug|Any CPU
41+
{9F393E0D-1617-4489-B6AB-4E91E3AEE397}.Release|Any CPU.ActiveCfg = Release|Any CPU
42+
{9F393E0D-1617-4489-B6AB-4E91E3AEE397}.Release|Any CPU.Build.0 = Release|Any CPU
43+
{C7153CD1-8A3E-45A9-A55B-6CFEA65F792B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
44+
{C7153CD1-8A3E-45A9-A55B-6CFEA65F792B}.Debug|Any CPU.Build.0 = Debug|Any CPU
45+
{C7153CD1-8A3E-45A9-A55B-6CFEA65F792B}.Release|Any CPU.ActiveCfg = Release|Any CPU
46+
{C7153CD1-8A3E-45A9-A55B-6CFEA65F792B}.Release|Any CPU.Build.0 = Release|Any CPU
47+
{2C332323-0AC8-4391-9DC4-38A5C77B985D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
48+
{2C332323-0AC8-4391-9DC4-38A5C77B985D}.Debug|Any CPU.Build.0 = Debug|Any CPU
49+
{2C332323-0AC8-4391-9DC4-38A5C77B985D}.Release|Any CPU.ActiveCfg = Release|Any CPU
50+
{2C332323-0AC8-4391-9DC4-38A5C77B985D}.Release|Any CPU.Build.0 = Release|Any CPU
10351
EndGlobalSection
10452
EndGlobal

src/App/Az.App.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 11/16/2022
6+
# Generated on: 12/22/2022
77
#
88

99
@{

src/App/Changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
* Added enrich example for the cmdlet `New-AzContainerAppScaleRuleObject`.[#20334]
2122

2223
## Version 0.1.0
2324
* First preview release for module Az.App

src/App/custom/New-AzContainerAppCustomDomainObject.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Create an in-memory object for CustomDomain.
2323
.Outputs
2424
Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.CustomDomain
2525
.Link
26-
https://docs.microsoft.com/powershell/module/az./new-azcontainerappcustomdomainobject
26+
https://learn.microsoft.com/powershell/module/az./new-azcontainerappcustomdomainobject
2727
#>
2828
function New-AzContainerAppCustomDomainObject {
2929
[OutputType('Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.CustomDomain')]

src/App/custom/New-AzContainerAppDaprMetadataObject.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Create an in-memory object for DaprMetadata.
2323
.Outputs
2424
Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.DaprMetadata
2525
.Link
26-
https://docs.microsoft.com/powershell/module/az./new-azcontainerappdaprmetadataobject
26+
https://learn.microsoft.com/powershell/module/az./new-azcontainerappdaprmetadataobject
2727
#>
2828
function New-AzContainerAppDaprMetadataObject {
2929
[OutputType('Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.DaprMetadata')]

src/App/custom/New-AzContainerAppEnvironmentVarObject.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Create an in-memory object for EnvironmentVar.
2323
.Outputs
2424
Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.EnvironmentVar
2525
.Link
26-
https://docs.microsoft.com/powershell/module/az./new-azcontainerappenvironmentvarobject
26+
https://learn.microsoft.com/powershell/module/az./new-azcontainerappenvironmentvarobject
2727
#>
2828
function New-AzContainerAppEnvironmentVarObject {
2929
[OutputType('Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.EnvironmentVar')]

src/App/custom/New-AzContainerAppIdentityProviderObject.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Create an in-memory object for IdentityProviders.
2323
.Outputs
2424
Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IdentityProviders
2525
.Link
26-
https://docs.microsoft.com/powershell/module/az./new-azcontainerappidentityproviderobject
26+
https://learn.microsoft.com/powershell/module/az./new-azcontainerappidentityproviderobject
2727
#>
2828
function New-AzContainerAppIdentityProviderObject {
2929
[OutputType('Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.IdentityProviders')]

src/App/custom/New-AzContainerAppProbeHeaderObject.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Create an in-memory object for ContainerAppProbeHttpGetHttpHeadersItem.
2323
.Outputs
2424
Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ContainerAppProbeHttpGetHttpHeadersItem
2525
.Link
26-
https://docs.microsoft.com/powershell/module/az./new-azcontainerappprobeheaderobject
26+
https://learn.microsoft.com/powershell/module/az./new-azcontainerappprobeheaderobject
2727
#>
2828
function New-AzContainerAppProbeHeaderObject {
2929
[OutputType('Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ContainerAppProbeHttpGetHttpHeadersItem')]

src/App/custom/New-AzContainerAppProbeObject.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Create an in-memory object for ContainerAppProbe.
2323
.Outputs
2424
Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ContainerAppProbe
2525
.Link
26-
https://docs.microsoft.com/powershell/module/az./new-azcontainerappprobeobject
26+
https://learn.microsoft.com/powershell/module/az./new-azcontainerappprobeobject
2727
#>
2828
function New-AzContainerAppProbeObject {
2929
[OutputType('Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.ContainerAppProbe')]

src/App/custom/New-AzContainerAppRegistryCredentialObject.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Create an in-memory object for RegistryCredentials.
2323
.Outputs
2424
Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.RegistryCredentials
2525
.Link
26-
https://docs.microsoft.com/powershell/module/az./new-azcontainerappregistrycredentialobject
26+
https://learn.microsoft.com/powershell/module/az./new-azcontainerappregistrycredentialobject
2727
#>
2828
function New-AzContainerAppRegistryCredentialObject {
2929
[OutputType('Microsoft.Azure.PowerShell.Cmdlets.App.Models.Api20220301.RegistryCredentials')]

0 commit comments

Comments
 (0)