Skip to content

Commit 5aaa288

Browse files
committed
Merge: upstream/dev to origin/dev
2 parents 422b163 + 53db643 commit 5aaa288

File tree

1,987 files changed

+583224
-343512
lines changed

Some content is hidden

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

1,987 files changed

+583224
-343512
lines changed

AzurePowershell.Test.targets

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@
8282
<XUnitTests Include=".\src\ResourceManager\ApiManagement\Commands.ApiManagement.Test\bin\Debug\Microsoft.Azure.Commands.ApiManagement.Test.dll"/>
8383
<XUnitTests Include=".\src\ResourceManager\Profile\Commands.Profile.Test\bin\Debug\Microsoft.Azure.Commands.Profile.Test.dll"/>
8484
<XUnitTests Include=".\src\ResourceManager\AzureBackup\Commands.AzureBackup.Test\bin\Debug\Microsoft.Azure.Commands.AzureBackup.Test.dll"/>
85+
<XUnitTests Include=".\src\ResourceManager\NotificationHubs\Commands.NotificationHubs.Test\bin\Debug\Microsoft.Azure.Commands.NotificationHubs.Test.dll"/>
8586
<XUnitTests Include="@(AsmXUnitTests)"/>
8687
</ItemGroup>
8788
<ItemGroup Condition=" '$(scope)' == 'ServiceManagement' ">

ChangeLog.md

Lines changed: 57 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,62 @@
1-
* Azure Redis Cache
1+
* Azure Redis Cache: new cmdlets for enabling and disabling diagnostics
2+
* Set-AzureRmRedisCacheDiagnostics
3+
* Remove-AzureRmRedisCacheDiagnostics
4+
## 2015.12.14 version 1.0.2
5+
* Azure Compute (ARM):
6+
* Enable BGInfo extension by default
7+
* Fix the issue when an OS disk is in a different resource group: Now New-AzureRmVM does not create a new storage account for boot diagnostics.
8+
* Add Set-AzureRmBginfoExtension cmdlet
9+
* Make WinRMCertificateUrl parameter mandatory when Set-AzureRmVMOperatingSystem cmdlet is performed with WinRMHttps switch
10+
* Azure Compute (Service Management):
11+
* Fix the issue when adding a new VM without a data disk
12+
* Add ExtensionId parameter for all extension cmdlets
13+
* Expose RemoteAccessCertificateThumbprint property for Get-AzureVM cmdlet
14+
* Azure SQL Database: new cmdlets for managing database threat detection policies:
15+
* Get-AzureRmSqlDatabaseThreatDetectionPolicy
16+
* Set-AzureRmSqlDatabaseThreatDetectionPolicy
17+
* Remove-AzureRmSqlDatabaseThreatDetectionPolicy
18+
* Azure RemoteApp: New cmdlets for managing stale machine accounts in AD:
19+
* Get-AzureRemoteAppVmStaleAdObject
20+
* Clear-AzureRemoteAppVmStaleAdObject
21+
* ARM Storage:
22+
* Fix alias missing issue
23+
24+
25+
## 2015.11.09 version 1.0.1
26+
* Azure Compute
27+
* Added cmdlets for managing VM DiskEncryption extension
28+
* Azure KeyVault
29+
* Added EnabledForDiskEncryption and EnabledForTemplateDeployment flags to Azure Key Vault access policy
30+
* Azure Websites
31+
* Fixed issues with website management client creation
32+
33+
## 2015.11.05 version 1.0
34+
* Azure Compute
35+
* AzureRmVM cmdlet bug fixes
36+
* Fixes for DSC Extension cmdlets
37+
* Azure DataLake
38+
* First release of Azure DataLake Store and Azure DataLake Analytics cmdlets
39+
* Azure Network
40+
* Fixes to ExpressRoute cmdlets in Azure Resource Manager
41+
* Changes to BGP cmdlets
42+
* Azure Notification Hubs
43+
* First release of Azure Notification Hubs cmdlets
44+
* Azure Profile
45+
* Enable Certificate login for AD Applications
46+
* Get-AzureRmSubscription, Set-AzureRmContext search all tenants by default when no tenant is specified
47+
* Azure Redis Cache
248
* Set-AzureRedisCache - Premium and vNet support for redis cache
349
* New-AzureRedisCache - Premium and vNet support for redis cache
4-
50+
* Azure Resource Manager
51+
* Automatic RP Registration
52+
* Updates for Find-Resource, Authorization cmdlets, and AzureAD cmdlets
53+
* Azure Sql
54+
* Changes to Data Masking cmdlets
55+
* Azure Storage
56+
* Added support for storage file and usage metrics in Azure Resource Manager cmdlets
57+
* Azure Websites
58+
* New and rewritten cmdlets for Azure Web Application management
59+
560
## 2015.10.09 version 1.0 preview
661
* Azure Resource Manager Management Cmdlets
762
* New-AzureRmResourceGroup - Removed the template deployment parameters from this cmdlet. Template deployment will now be

build.proj

Lines changed: 3 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,14 @@
4545
<Scope Condition=" $(Scope) == '' " >all</Scope>
4646
</PropertyGroup>
4747
<ItemGroup>
48-
<CmdletSolutionsToBuild Include=".\src\ResourceManager\**\*.sln;.\src\ServiceManagement\ServiceManagement.sln" Condition=" '$(Scope)' == 'all' "/>
48+
<CmdletSolutionsToBuild Include=".\src\ResourceManager\**\*.sln;.\src\ServiceManagement\ServiceManagement.sln"
49+
Exclude=".\src\ResourceManager\Intune\*.sln"
50+
Condition=" '$(Scope)' == 'all' "/>
4951
<CmdletSolutionsToBuild Include=".\src\ResourceManager\$(Scope)\*.sln"
5052
Condition=" '$(Scope)' != 'all' and '$(Scope)' != 'ServiceManagement' and '$(Scope)' != 'AzureStorage' "/>
5153
<CmdletSolutionsToBuild Include=".\src\ServiceManagement\ServiceManagement.sln"
5254
Condition=" '$(Scope)' == 'ServiceManagement' or '$(Scope)' == 'AzureStorage' "/>
5355
<SetupSln Include=".\setup\azurepowershell.sln" />
54-
<SetupPowershellGetSln Include=".\setup-powershellget\powershellget.sln" />
5556
</ItemGroup>
5657

5758
<!--
@@ -80,13 +81,6 @@
8081
Properties="Configuration=$(Configuration);Platform=Any CPU"
8182
ContinueOnError="false" />
8283

83-
<MSBuild
84-
Projects="@(SetupPowershellGetSln)"
85-
Targets="Clean"
86-
Properties="Configuration=$(Configuration);Platform=Any CPU"
87-
ContinueOnError="false"
88-
Condition=" '$(Scope)' == 'all' "/>
89-
9084
<!-- Delete the publish files -->
9185
<Message Importance="high" Text="Cleaning publish files..." ContinueOnError="false" />
9286
<ItemGroup>
@@ -161,14 +155,6 @@
161155

162156
<CallTarget Targets="CodeSignBinaries" Condition=" '$(CodeSign)' == 'true' " />
163157

164-
<Message Importance="high" Text="Building Setup..." />
165-
<MSBuild
166-
Projects="@(SetupPowershellGetSln)"
167-
Targets="Build"
168-
Properties="Configuration=$(Configuration);Platform=Any CPU"
169-
ContinueOnError="false"
170-
Condition=" '$(Scope)' == 'all' "/>
171-
172158
<MSBuild
173159
Projects="@(SetupSln)"
174160
Targets="Build"
@@ -203,8 +189,6 @@
203189
</GetFrameworkSdkPath>
204190

205191
<!-- Copying shortcut to be signed -->
206-
<Copy SourceFiles="$(LibraryRoot)setup-powershellget\Setup\ShortcutStartup.ps1"
207-
DestinationFolder="$(LibrarySourceFolder)\Package\$(Configuration)" />
208192
<Copy SourceFiles="$(LibraryRoot)tools\AzureRM\AzureRM.psd1"
209193
DestinationFolder="$(LibrarySourceFolder)\Package\$(Configuration)" />
210194
<Copy SourceFiles="$(LibraryRoot)tools\AzureRM\AzureRM.psm1"
@@ -260,8 +244,6 @@
260244
Condition="!$(DelaySign) and '@(DelaySignedAssembliesToSign)' != ''"/>
261245

262246
<!-- Copying signed shortcut back -->
263-
<Copy SourceFiles="$(LibrarySourceFolder)\Package\$(Configuration)\ShortcutStartup.ps1"
264-
DestinationFolder="$(LibraryRoot)setup-powershellget\Setup" />
265247
<Copy SourceFiles="$(LibrarySourceFolder)\Package\$(Configuration)\AzureRM.psd1"
266248
DestinationFolder="$(LibraryRoot)tools\AzureRM" />
267249
<Copy SourceFiles="$(LibrarySourceFolder)\Package\$(Configuration)\AzureRM.psm1"

setup-powershellget/Setup/CustomAction.config

Lines changed: 0 additions & 32 deletions
This file was deleted.

setup-powershellget/Setup/CustomAction.cs

Lines changed: 0 additions & 110 deletions
This file was deleted.

setup-powershellget/Setup/Setup.csproj

Lines changed: 0 additions & 50 deletions
This file was deleted.

0 commit comments

Comments
 (0)