Skip to content

Commit d27c625

Browse files
author
Maddie Clayton
authored
Merge pull request #7725 from Azure/maddieclayton-patch-1
Release first version of Az.FrontDoor
2 parents c655391 + f481fb5 commit d27c625

File tree

2 files changed

+21
-7
lines changed

2 files changed

+21
-7
lines changed

Azure.PowerShell.Netcore.sln

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio 15
3-
VisualStudioVersion = 15.0.27130.2027
3+
VisualStudioVersion = 15.0.27130.2020
44
MinimumVisualStudioVersion = 10.0.40219.1
55
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Commands.Profile.Netcore", "src\ResourceManager\Profile\Commands.Profile\Commands.Profile.Netcore.csproj", "{31044C50-5F29-4CB4-9E7C-8E0123FA6B77}"
66
EndProject
@@ -148,6 +148,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Commands.SignalR.Netcore",
148148
EndProject
149149
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Commands.DevSpaces.Netcore", "src\ResourceManager\DevSpaces\Commands.DevSpaces\Commands.DevSpaces.Netcore.csproj", "{6EBD1E1B-12D1-451D-B284-ED35A91D6C8C}"
150150
EndProject
151+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Commands.FrontDoor.Netcore", "src\ResourceManager\FrontDoor\Commands.FrontDoor\Commands.FrontDoor.Netcore.csproj", "{9207944C-6E48-4845-BC58-85C7EFAA0E28}"
152+
EndProject
151153
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Commands.IotCentral.Netcore", "src\ResourceManager\IotCentral\Commands.IotCentral\Commands.IotCentral.Netcore.csproj", "{18B8B354-6920-4329-AB6B-DC98790B7A5A}"
152154
EndProject
153155
Global
@@ -1035,6 +1037,18 @@ Global
10351037
{6EBD1E1B-12D1-451D-B284-ED35A91D6C8C}.Release|x64.Build.0 = Release|Any CPU
10361038
{6EBD1E1B-12D1-451D-B284-ED35A91D6C8C}.Release|x86.ActiveCfg = Release|Any CPU
10371039
{6EBD1E1B-12D1-451D-B284-ED35A91D6C8C}.Release|x86.Build.0 = Release|Any CPU
1040+
{9207944C-6E48-4845-BC58-85C7EFAA0E28}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
1041+
{9207944C-6E48-4845-BC58-85C7EFAA0E28}.Debug|Any CPU.Build.0 = Debug|Any CPU
1042+
{9207944C-6E48-4845-BC58-85C7EFAA0E28}.Debug|x64.ActiveCfg = Debug|Any CPU
1043+
{9207944C-6E48-4845-BC58-85C7EFAA0E28}.Debug|x64.Build.0 = Debug|Any CPU
1044+
{9207944C-6E48-4845-BC58-85C7EFAA0E28}.Debug|x86.ActiveCfg = Debug|Any CPU
1045+
{9207944C-6E48-4845-BC58-85C7EFAA0E28}.Debug|x86.Build.0 = Debug|Any CPU
1046+
{9207944C-6E48-4845-BC58-85C7EFAA0E28}.Release|Any CPU.ActiveCfg = Release|Any CPU
1047+
{9207944C-6E48-4845-BC58-85C7EFAA0E28}.Release|Any CPU.Build.0 = Release|Any CPU
1048+
{9207944C-6E48-4845-BC58-85C7EFAA0E28}.Release|x64.ActiveCfg = Release|Any CPU
1049+
{9207944C-6E48-4845-BC58-85C7EFAA0E28}.Release|x64.Build.0 = Release|Any CPU
1050+
{9207944C-6E48-4845-BC58-85C7EFAA0E28}.Release|x86.ActiveCfg = Release|Any CPU
1051+
{9207944C-6E48-4845-BC58-85C7EFAA0E28}.Release|x86.Build.0 = Release|Any CPU
10381052
{18B8B354-6920-4329-AB6B-DC98790B7A5A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
10391053
{18B8B354-6920-4329-AB6B-DC98790B7A5A}.Debug|Any CPU.Build.0 = Debug|Any CPU
10401054
{18B8B354-6920-4329-AB6B-DC98790B7A5A}.Debug|x64.ActiveCfg = Debug|Any CPU

src/ResourceManager/FrontDoor/Commands.FrontDoor/Az.FrontDoor.psd1

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

1414
# Version number of this module.
15-
ModuleVersion = '0.1.0'
15+
ModuleVersion = '0.5.0'
1616

1717
# Supported PSEditions
18-
CompatiblePSEditions = 'Core'
18+
CompatiblePSEditions = 'Core', 'Desktop'
1919

2020
# ID used to uniquely identify this module
2121
GUID = '91832aaa-dc11-4583-8239-adb7df531604'
@@ -30,7 +30,7 @@ CompanyName = 'Microsoft Corporation'
3030
Copyright = 'Microsoft Corporation. All rights reserved.'
3131

3232
# Description of the functionality provided by this module
33-
Description = '[PowerShell .Net Core] Microsoft Azure PowerShell - Front Door service cmdlets for Azure Resource Manager'
33+
Description = 'Microsoft Azure PowerShell - Front Door service cmdlets for Azure Resource Manager'
3434

3535
# Minimum version of the Windows PowerShell engine required by this module
3636
PowerShellVersion = '5.1'
@@ -42,7 +42,7 @@ PowerShellVersion = '5.1'
4242
# PowerShellHostVersion = ''
4343

4444
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
45-
# DotNetFrameworkVersion = ''
45+
DotNetFrameworkVersion = '4.7.2'
4646

4747
# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
4848
# CLRVersion = ''
@@ -51,7 +51,7 @@ PowerShellVersion = '5.1'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'Az.Profile'; ModuleVersion = '0.1.0'; })
54+
RequiredModules = @(@{ModuleName = 'Az.Profile'; ModuleVersion = '0.5.0'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = '.\Microsoft.Azure.Management.FrontDoor.dll'
@@ -78,7 +78,7 @@ CmdletsToExport = 'New-AzFrontDoor', 'Get-AzFrontDoor', 'Set-AzFrontDoor',
7878
'New-AzFrontDoorHealthProbeSettingObject', 'New-AzFrontDoorLoadBalancingSettingObject',
7979
'New-AzFrontDoorMatchConditionObject', 'New-AzFrontDoorCustomRuleObject', 'New-AzFrontDoorManagedRuleObject',
8080
'New-AzFrontDoorFireWallPolicy', 'Get-AzFrontDoorFireWallPolicy', 'Set-AzFrontDoorFireWallPolicy',
81-
'Remove-AzFrontDoorFireWallPolicy', 'New-AzFrontDoorRuleGroupOverrideObject', 'Remove-AzFrontDoorContent''
81+
'Remove-AzFrontDoorFireWallPolicy', 'New-AzFrontDoorRuleGroupOverrideObject', 'Remove-AzFrontDoorContent'
8282

8383
# Variables to export from this module
8484
# VariablesToExport = @()

0 commit comments

Comments
 (0)