Skip to content

Commit d67f188

Browse files
committed
Merge branch 'preview' of https://github.com/lewu-msft/azure-powershell into preview
2 parents 08038dd + 45eded4 commit d67f188

File tree

334 files changed

+2630
-4400
lines changed

Some content is hidden

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

334 files changed

+2630
-4400
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ before_install:
2525
# https://github.com/travis-ci/travis-ci/issues/1066#issuecomment-383489298
2626
script:
2727
- sudo dotnet msbuild build.proj /t:BuildNetcore /p:Configuration=$CONFIG || travis_terminate 1
28-
- sudo dotnet tools/StaticAnalysis/bin/$CONFIG/netcoreapp2.1/StaticAnalysis.Netcore.dll -p src/Package/$CONFIG -r src/Package -u || travis_terminate 1
28+
- sudo dotnet src/Package/StaticAnalysis/StaticAnalysis.Netcore.dll -p $TRAVIS_BUILD_DIR/src/Package/$CONFIG -r $TRAVIS_BUILD_DIR/src/Package/StaticAnalysis -u || travis_terminate 1
2929
- sudo pwsh -NonInteractive -NoLogo -NoProfile -File tools/TestModuleLoading.ps1 || travis_terminate 1
3030
- sudo dotnet pack src/TestPrerequisites/Common.TestPrerequisites.sln --configuration $CONFIG || travis_terminate 1
3131
- sudo dotnet test src/Azure.PowerShell.Netcore.Test.sln --filter "AcceptanceType=CheckIn&RunType!=DesktopOnly" --configuration $CONFIG --framework netcoreapp2.0

documentation/announcing-az-module.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ For scripts that import modules directly, or use ```#Requires``` statements to s
9090
| AzureRM.Consumption | Az.Consumption* |
9191
| AzureRM.ContainerInstance | Az.ContainerInstance* |
9292
| AzureRM.ContainerRegistry | Az.ContainerRegistry* |
93-
| AzureRM.DataFactories | Az.DataFactories*** |
94-
| AzureRM.DataFactoryV2 | Az.FataFactoryV2* |
93+
| AzureRM.DataFactories | Az.DataFactory |
94+
| AzureRM.DataFactoryV2 | Az.DataFactory |
9595
| AzureRM.DataLakeAnalytics | Az.DataLakeAnalytics |
9696
| AzureRM.DataLakeStore | Az.DataLakeStore |
9797
| AzureRM.DataMigration | Az.DataMigration |

documentation/migration-guides/Stack/migration-guide.2.3.0.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,8 @@ Set-AzureRmVMAccessExtension [other required parameters] -UserName "plain-text s
102102
Set-AzureRmVMAccessExtension [other required parameters] -Credential $PSCredential
103103
```
104104

105+
## Breaking changes to Resources cmdlets
106+
105107
### **Find-AzureRmResource**
106108
- This cmdlet was removed and the functionality was moved into `Get-AzureRmResource`
107109

@@ -128,6 +130,15 @@ Get-AzureRmResourceGroup -Tag @{ "testtag" = $null }
128130
Get-AzureRmResourceGroup -Tag @{ "testtag" = "testval" }
129131
```
130132

133+
### **Get-AzureRmResource**
134+
The cmdlet output model was changed. The property name `ResourceName` was renamed to `Name`
135+
```powershell
136+
# Old
137+
(Get-AzureRmResource).ResourceName
138+
# New
139+
(Get-AzureRmResource).Name
140+
```
141+
131142
### **New-AzureRmADAppCredential**
132143
- Parameter "Password" being replaced in favor of a SecureString
133144
```powershell

src/Azure.PowerShell.Netcore.Test.sln

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,18 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Commands.Relay.Test.Netcore
8787
EndProject
8888
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Commands.StreamAnalytics.Test.Netcore", "ResourceManager\StreamAnalytics\Commands.StreamAnalytics.Test\Commands.StreamAnalytics.Test.Netcore.csproj", "{19187AFD-3B1D-4946-BF5C-8E2FD496C886}"
8989
EndProject
90+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Commands.LogicApp.Test.Netcore", "ResourceManager\LogicApp\Commands.LogicApp.Test\Commands.LogicApp.Test.Netcore.csproj", "{EB57DE11-5D6D-4DD4-B16E-B54DF67EE7C6}"
91+
EndProject
92+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Commands.OperationalInsights.Test.Netcore", "ResourceManager\OperationalInsights\Commands.OperationalInsights.Test\Commands.OperationalInsights.Test.Netcore.csproj", "{2985DCF3-33BD-4869-9D0E-DAEB71023610}"
93+
EndProject
94+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Commands.MarketplaceOrdering.Test.Netcore", "ResourceManager\MarketplaceOrdering\Commands.MarketplaceOrdering.Test\Commands.MarketplaceOrdering.Test.Netcore.csproj", "{778CCA60-19D7-4E55-B613-B5263F7CB6CA}"
95+
EndProject
96+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Commands.RecoveryServices.Test.Netcore", "ResourceManager\RecoveryServices\Commands.RecoveryServices.Test\Commands.RecoveryServices.Test.Netcore.csproj", "{D37B478D-B75E-467A-A4B2-0564F8A53A00}"
97+
EndProject
98+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Commands.RecoveryServices.Backup.Test.Netcore", "ResourceManager\RecoveryServices\Commands.RecoveryServices.Backup.Test\Commands.RecoveryServices.Backup.Test.Netcore.csproj", "{DAD8DB50-57D3-4828-9692-3A6B6EDC5BC5}"
99+
EndProject
100+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Commands.RecoveryServices.SiteRecovery.Test.Netcore", "ResourceManager\RecoveryServices\Commands.RecoveryServices.SiteRecovery.Test\Commands.RecoveryServices.SiteRecovery.Test.Netcore.csproj", "{A2660AEE-6B12-43FB-A6A5-0FFF08C80DFB}"
101+
EndProject
90102
Global
91103
GlobalSection(SolutionConfigurationPlatforms) = preSolution
92104
Debug|Any CPU = Debug|Any CPU
@@ -601,6 +613,78 @@ Global
601613
{19187AFD-3B1D-4946-BF5C-8E2FD496C886}.Release|x64.Build.0 = Release|Any CPU
602614
{19187AFD-3B1D-4946-BF5C-8E2FD496C886}.Release|x86.ActiveCfg = Release|Any CPU
603615
{19187AFD-3B1D-4946-BF5C-8E2FD496C886}.Release|x86.Build.0 = Release|Any CPU
616+
{EB57DE11-5D6D-4DD4-B16E-B54DF67EE7C6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
617+
{EB57DE11-5D6D-4DD4-B16E-B54DF67EE7C6}.Debug|Any CPU.Build.0 = Debug|Any CPU
618+
{EB57DE11-5D6D-4DD4-B16E-B54DF67EE7C6}.Debug|x64.ActiveCfg = Debug|Any CPU
619+
{EB57DE11-5D6D-4DD4-B16E-B54DF67EE7C6}.Debug|x64.Build.0 = Debug|Any CPU
620+
{EB57DE11-5D6D-4DD4-B16E-B54DF67EE7C6}.Debug|x86.ActiveCfg = Debug|Any CPU
621+
{EB57DE11-5D6D-4DD4-B16E-B54DF67EE7C6}.Debug|x86.Build.0 = Debug|Any CPU
622+
{EB57DE11-5D6D-4DD4-B16E-B54DF67EE7C6}.Release|Any CPU.ActiveCfg = Release|Any CPU
623+
{EB57DE11-5D6D-4DD4-B16E-B54DF67EE7C6}.Release|Any CPU.Build.0 = Release|Any CPU
624+
{EB57DE11-5D6D-4DD4-B16E-B54DF67EE7C6}.Release|x64.ActiveCfg = Release|Any CPU
625+
{EB57DE11-5D6D-4DD4-B16E-B54DF67EE7C6}.Release|x64.Build.0 = Release|Any CPU
626+
{EB57DE11-5D6D-4DD4-B16E-B54DF67EE7C6}.Release|x86.ActiveCfg = Release|Any CPU
627+
{EB57DE11-5D6D-4DD4-B16E-B54DF67EE7C6}.Release|x86.Build.0 = Release|Any CPU
628+
{2985DCF3-33BD-4869-9D0E-DAEB71023610}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
629+
{2985DCF3-33BD-4869-9D0E-DAEB71023610}.Debug|Any CPU.Build.0 = Debug|Any CPU
630+
{2985DCF3-33BD-4869-9D0E-DAEB71023610}.Debug|x64.ActiveCfg = Debug|Any CPU
631+
{2985DCF3-33BD-4869-9D0E-DAEB71023610}.Debug|x64.Build.0 = Debug|Any CPU
632+
{2985DCF3-33BD-4869-9D0E-DAEB71023610}.Debug|x86.ActiveCfg = Debug|Any CPU
633+
{2985DCF3-33BD-4869-9D0E-DAEB71023610}.Debug|x86.Build.0 = Debug|Any CPU
634+
{2985DCF3-33BD-4869-9D0E-DAEB71023610}.Release|Any CPU.ActiveCfg = Release|Any CPU
635+
{2985DCF3-33BD-4869-9D0E-DAEB71023610}.Release|Any CPU.Build.0 = Release|Any CPU
636+
{2985DCF3-33BD-4869-9D0E-DAEB71023610}.Release|x64.ActiveCfg = Release|Any CPU
637+
{2985DCF3-33BD-4869-9D0E-DAEB71023610}.Release|x64.Build.0 = Release|Any CPU
638+
{2985DCF3-33BD-4869-9D0E-DAEB71023610}.Release|x86.ActiveCfg = Release|Any CPU
639+
{2985DCF3-33BD-4869-9D0E-DAEB71023610}.Release|x86.Build.0 = Release|Any CPU
640+
{778CCA60-19D7-4E55-B613-B5263F7CB6CA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
641+
{778CCA60-19D7-4E55-B613-B5263F7CB6CA}.Debug|Any CPU.Build.0 = Debug|Any CPU
642+
{778CCA60-19D7-4E55-B613-B5263F7CB6CA}.Debug|x64.ActiveCfg = Debug|Any CPU
643+
{778CCA60-19D7-4E55-B613-B5263F7CB6CA}.Debug|x64.Build.0 = Debug|Any CPU
644+
{778CCA60-19D7-4E55-B613-B5263F7CB6CA}.Debug|x86.ActiveCfg = Debug|Any CPU
645+
{778CCA60-19D7-4E55-B613-B5263F7CB6CA}.Debug|x86.Build.0 = Debug|Any CPU
646+
{778CCA60-19D7-4E55-B613-B5263F7CB6CA}.Release|Any CPU.ActiveCfg = Release|Any CPU
647+
{778CCA60-19D7-4E55-B613-B5263F7CB6CA}.Release|Any CPU.Build.0 = Release|Any CPU
648+
{778CCA60-19D7-4E55-B613-B5263F7CB6CA}.Release|x64.ActiveCfg = Release|Any CPU
649+
{778CCA60-19D7-4E55-B613-B5263F7CB6CA}.Release|x64.Build.0 = Release|Any CPU
650+
{778CCA60-19D7-4E55-B613-B5263F7CB6CA}.Release|x86.ActiveCfg = Release|Any CPU
651+
{778CCA60-19D7-4E55-B613-B5263F7CB6CA}.Release|x86.Build.0 = Release|Any CPU
652+
{D37B478D-B75E-467A-A4B2-0564F8A53A00}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
653+
{D37B478D-B75E-467A-A4B2-0564F8A53A00}.Debug|Any CPU.Build.0 = Debug|Any CPU
654+
{D37B478D-B75E-467A-A4B2-0564F8A53A00}.Debug|x64.ActiveCfg = Debug|Any CPU
655+
{D37B478D-B75E-467A-A4B2-0564F8A53A00}.Debug|x64.Build.0 = Debug|Any CPU
656+
{D37B478D-B75E-467A-A4B2-0564F8A53A00}.Debug|x86.ActiveCfg = Debug|Any CPU
657+
{D37B478D-B75E-467A-A4B2-0564F8A53A00}.Debug|x86.Build.0 = Debug|Any CPU
658+
{D37B478D-B75E-467A-A4B2-0564F8A53A00}.Release|Any CPU.ActiveCfg = Release|Any CPU
659+
{D37B478D-B75E-467A-A4B2-0564F8A53A00}.Release|Any CPU.Build.0 = Release|Any CPU
660+
{D37B478D-B75E-467A-A4B2-0564F8A53A00}.Release|x64.ActiveCfg = Release|Any CPU
661+
{D37B478D-B75E-467A-A4B2-0564F8A53A00}.Release|x64.Build.0 = Release|Any CPU
662+
{D37B478D-B75E-467A-A4B2-0564F8A53A00}.Release|x86.ActiveCfg = Release|Any CPU
663+
{D37B478D-B75E-467A-A4B2-0564F8A53A00}.Release|x86.Build.0 = Release|Any CPU
664+
{DAD8DB50-57D3-4828-9692-3A6B6EDC5BC5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
665+
{DAD8DB50-57D3-4828-9692-3A6B6EDC5BC5}.Debug|Any CPU.Build.0 = Debug|Any CPU
666+
{DAD8DB50-57D3-4828-9692-3A6B6EDC5BC5}.Debug|x64.ActiveCfg = Debug|Any CPU
667+
{DAD8DB50-57D3-4828-9692-3A6B6EDC5BC5}.Debug|x64.Build.0 = Debug|Any CPU
668+
{DAD8DB50-57D3-4828-9692-3A6B6EDC5BC5}.Debug|x86.ActiveCfg = Debug|Any CPU
669+
{DAD8DB50-57D3-4828-9692-3A6B6EDC5BC5}.Debug|x86.Build.0 = Debug|Any CPU
670+
{DAD8DB50-57D3-4828-9692-3A6B6EDC5BC5}.Release|Any CPU.ActiveCfg = Release|Any CPU
671+
{DAD8DB50-57D3-4828-9692-3A6B6EDC5BC5}.Release|Any CPU.Build.0 = Release|Any CPU
672+
{DAD8DB50-57D3-4828-9692-3A6B6EDC5BC5}.Release|x64.ActiveCfg = Release|Any CPU
673+
{DAD8DB50-57D3-4828-9692-3A6B6EDC5BC5}.Release|x64.Build.0 = Release|Any CPU
674+
{DAD8DB50-57D3-4828-9692-3A6B6EDC5BC5}.Release|x86.ActiveCfg = Release|Any CPU
675+
{DAD8DB50-57D3-4828-9692-3A6B6EDC5BC5}.Release|x86.Build.0 = Release|Any CPU
676+
{A2660AEE-6B12-43FB-A6A5-0FFF08C80DFB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
677+
{A2660AEE-6B12-43FB-A6A5-0FFF08C80DFB}.Debug|Any CPU.Build.0 = Debug|Any CPU
678+
{A2660AEE-6B12-43FB-A6A5-0FFF08C80DFB}.Debug|x64.ActiveCfg = Debug|Any CPU
679+
{A2660AEE-6B12-43FB-A6A5-0FFF08C80DFB}.Debug|x64.Build.0 = Debug|Any CPU
680+
{A2660AEE-6B12-43FB-A6A5-0FFF08C80DFB}.Debug|x86.ActiveCfg = Debug|Any CPU
681+
{A2660AEE-6B12-43FB-A6A5-0FFF08C80DFB}.Debug|x86.Build.0 = Debug|Any CPU
682+
{A2660AEE-6B12-43FB-A6A5-0FFF08C80DFB}.Release|Any CPU.ActiveCfg = Release|Any CPU
683+
{A2660AEE-6B12-43FB-A6A5-0FFF08C80DFB}.Release|Any CPU.Build.0 = Release|Any CPU
684+
{A2660AEE-6B12-43FB-A6A5-0FFF08C80DFB}.Release|x64.ActiveCfg = Release|Any CPU
685+
{A2660AEE-6B12-43FB-A6A5-0FFF08C80DFB}.Release|x64.Build.0 = Release|Any CPU
686+
{A2660AEE-6B12-43FB-A6A5-0FFF08C80DFB}.Release|x86.ActiveCfg = Release|Any CPU
687+
{A2660AEE-6B12-43FB-A6A5-0FFF08C80DFB}.Release|x86.Build.0 = Release|Any CPU
604688
EndGlobalSection
605689
GlobalSection(SolutionProperties) = preSolution
606690
HideSolutionNode = FALSE

src/ResourceManager/Aks/Commands.Aks/Az.Aks.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Module manifest for module 'PSGet_AzureRM.Aks'
2+
# Module manifest for module 'Az.Aks'
33
#
44
# Generated by: Microsoft Corporation
55
#

src/ResourceManager/Aks/Commands.Aks/AzureRM.Aks.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Module manifest for module 'PSGet_AzureRM.Aks'
2+
# Module manifest for module 'AzureRM.Aks'
33
#
44
# Generated by: Microsoft Corporation
55
#

src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/Azure.AnalysisServices.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Module manifest for module 'PSGet_Azure.AnalysisServices'
2+
# Module manifest for module 'Azure.AnalysisServices'
33
#
44
# Generated by: Microsoft Corporation
55
#

src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/packages.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" />
99
<package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.28.3" targetFramework="net45" />
1010
<package id="Microsoft.Net.Http" version="2.2.28" targetFramework="net45" />
11-
<package id="Microsoft.Rest.ClientRuntime" version="2.3.13" targetFramework="net452" />
12-
<package id="Microsoft.Rest.ClientRuntime.Azure" version="3.3.15" targetFramework="net452" />
11+
<package id="Microsoft.Rest.ClientRuntime" version="2.3.14" targetFramework="net452" />
12+
<package id="Microsoft.Rest.ClientRuntime.Azure" version="3.3.16" targetFramework="net452" />
1313
<package id="Microsoft.WindowsAzure.Management" version="4.1.1" targetFramework="net45" />
1414
<package id="Newtonsoft.Json" version="6.0.8" targetFramework="net45" />
1515
</packages>

src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Test/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<package id="Microsoft.Azure.Management.Authorization" version="2.0.0" targetFramework="net45" />
99
<package id="Microsoft.Azure.Management.ResourceManager" version="1.9.0-preview" targetFramework="net45" />
1010
<package id="Microsoft.Azure.Management.Resources" version="2.20.0-preview" targetFramework="net45" />
11-
<package id="Microsoft.Azure.Test.Framework" version="1.0.6179.26854-prerelease" targetFramework="net45" />
11+
<package id="Microsoft.Azure.Test.Framework" version="3.0.0" targetFramework="net452" />
1212
<package id="Microsoft.Azure.Test.HttpRecorder" version="1.7.0" targetFramework="net45" />
1313
<package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" />
1414
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" />

src/ResourceManager/AnalysisServices/Commands.AnalysisServices/Az.AnalysisServices.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Module manifest for module 'AzureRM.AnalysisServices'
2+
# Module manifest for module 'Az.AnalysisServices'
33
#
44
# Generated by: Microsoft Corporation
55
#

src/ResourceManager/AnalysisServices/Commands.AnalysisServices/AzureRM.AnalysisServices.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Module manifest for module 'PSGet_AzureRM.AnalysisServices'
2+
# Module manifest for module 'AzureRM.AnalysisServices'
33
#
44
# Generated by: Microsoft Corporation
55
#

src/ResourceManager/ApiManagement/Commands.ApiManagement.Test/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<package id="Microsoft.Azure.Management.Authorization" version="2.0.0" targetFramework="net45" />
88
<package id="Microsoft.Azure.Management.Resources" version="2.20.0-preview" targetFramework="net45" />
99
<package id="Microsoft.Azure.Management.Storage" version="4.1.0-preview" targetFramework="net45" />
10-
<package id="Microsoft.Azure.Test.Framework" version="1.0.6179.26854-prerelease" targetFramework="net45" />
10+
<package id="Microsoft.Azure.Test.Framework" version="3.0.0" targetFramework="net452" />
1111
<package id="Microsoft.Azure.Test.HttpRecorder" version="1.8.1" targetFramework="net452" />
1212
<package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" />
1313
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" />

src/ResourceManager/ApiManagement/Commands.ApiManagement/Az.ApiManagement.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Module manifest for module 'AzureRM.ApiManagement'
2+
# Module manifest for module 'Az.ApiManagement'
33
#
44
# Generated by: Microsoft Corporation
55
#

src/ResourceManager/ApiManagement/Commands.ApiManagement/AzureRM.ApiManagement.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Module manifest for module 'PSGet_AzureRM.ApiManagement'
2+
# Module manifest for module 'AzureRM.ApiManagement'
33
#
44
# Generated by: Microsoft Corporation
55
#

src/ResourceManager/ApiManagement/Commands.SMAPI.Test/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<package id="Microsoft.Azure.Management.Authorization" version="2.0.0" targetFramework="net45" />
99
<package id="Microsoft.Azure.Management.Resources" version="2.20.0-preview" targetFramework="net45" />
1010
<package id="Microsoft.Azure.Management.Storage" version="3.0.0" targetFramework="net45" />
11-
<package id="Microsoft.Azure.Test.Framework" version="1.0.6179.26854-prerelease" targetFramework="net45" />
11+
<package id="Microsoft.Azure.Test.Framework" version="3.0.0" targetFramework="net452" />
1212
<package id="Microsoft.Azure.Test.HttpRecorder" version="1.8.1" targetFramework="net452" />
1313
<package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" />
1414
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" />

src/ResourceManager/ApplicationInsights/Commands.ApplicationInsights.Test/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<package id="Microsoft.Azure.Management.ApplicationInsights" version="0.1.1-preview" targetFramework="net452" />
66
<package id="Microsoft.Azure.Management.Resources" version="2.20.0-preview" targetFramework="net45" />
77
<package id="Microsoft.Azure.Management.Storage" version="6.5.0-preview" targetFramework="net452" />
8-
<package id="Microsoft.Azure.Test.Framework" version="1.0.6179.26854-prerelease" targetFramework="net45" />
8+
<package id="Microsoft.Azure.Test.Framework" version="3.0.0" targetFramework="net452" />
99
<package id="Microsoft.Azure.Test.HttpRecorder" version="1.7.0" targetFramework="net45" />
1010
<package id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="2.28.3" targetFramework="net45" />
1111
<package id="Microsoft.Net.Http" version="2.2.28" targetFramework="net45" />

src/ResourceManager/ApplicationInsights/Commands.ApplicationInsights/Az.ApplicationInsights.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Module manifest for module 'AzureRM.ApplicationInsights'
2+
# Module manifest for module 'Az.ApplicationInsights'
33
#
44
# Generated by: Microsoft Corporation
55
#

src/ResourceManager/ApplicationInsights/Commands.ApplicationInsights/AzureRM.ApplicationInsights.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Module manifest for module 'PSGet_AzureRM.ApplicationInsights'
2+
# Module manifest for module 'AzureRM.ApplicationInsights'
33
#
44
# Generated by: Microsoft Corporation
55
#

src/ResourceManager/Automation/Commands.Automation.Test/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<package id="Microsoft.Azure.Common.Dependencies" version="1.0.0" targetFramework="net45" />
66
<package id="Microsoft.Azure.Management.Automation" version="2.0.1" targetFramework="net45" />
77
<package id="Microsoft.Azure.Management.Resources" version="2.20.0-preview" targetFramework="net45" />
8-
<package id="Microsoft.Azure.Test.Framework" version="1.0.6179.26854-prerelease" targetFramework="net45" />
8+
<package id="Microsoft.Azure.Test.Framework" version="3.0.0" targetFramework="net452" />
99
<package id="Microsoft.Azure.Test.HttpRecorder" version="1.6.7-preview" targetFramework="net45" />
1010
<package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" />
1111
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" />

src/ResourceManager/Automation/Commands.Automation/Az.Automation.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Module manifest for module 'AzureRM.Automation'
2+
# Module manifest for module 'Az.Automation'
33
#
44
# Generated by: Microsoft Corporation
55
#

src/ResourceManager/Automation/Commands.Automation/AzureRM.Automation.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Module manifest for module 'PSGet_AzureRM.Automation'
2+
# Module manifest for module 'AzureRM.Automation'
33
#
44
# Generated by: Microsoft Corporation
55
#

src/ResourceManager/AzureBackup/Commands.AzureBackup.Test/packages.config

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<package id="Microsoft.Azure.Common.Dependencies" version="1.0.0" targetFramework="net45" />
66
<package id="Microsoft.Azure.Management.BackupServices" version="1.0.5-preview" targetFramework="net45" />
77
<package id="Microsoft.Azure.Management.Resources" version="2.20.0-preview" targetFramework="net45" />
8-
<package id="Microsoft.Azure.Test.Framework" version="1.0.6179.26854-prerelease" targetFramework="net45" />
9-
<package id="Microsoft.Azure.Test.HttpRecorder" version="1.6.7-preview" targetFramework="net45" />
8+
<package id="Microsoft.Azure.Test.Framework" version="3.0.0" targetFramework="net452" />
9+
<package id="Microsoft.Azure.Test.HttpRecorder" version="1.13.0" targetFramework="net452" />
1010
<package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" />
1111
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" />
1212
<package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" />
@@ -22,4 +22,4 @@
2222
<package id="xunit.extensibility.core" version="2.1.0" targetFramework="net45" />
2323
<package id="xunit.extensibility.execution" version="2.1.0" targetFramework="net45" />
2424
<package id="xunit.runner.visualstudio" version="2.1.0" targetFramework="net45" />
25-
</packages>
25+
</packages>

src/ResourceManager/AzureBackup/Commands.AzureBackup/Az.Backup.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Module manifest for module 'AzureRM.Backup'
2+
# Module manifest for module 'Az.Backup'
33
#
44
# Generated by: Microsoft Corporation
55
#

src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureRM.Backup.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Module manifest for module 'PSGet_AzureRM.Backup'
2+
# Module manifest for module 'AzureRM.Backup'
33
#
44
# Generated by: Microsoft Corporation
55
#

0 commit comments

Comments
 (0)