Skip to content

Commit 98ac14b

Browse files
committed
Merge pull request #121 from huangpf/dev
Dev
2 parents 74014ad + e47eed3 commit 98ac14b

File tree

544 files changed

+43003
-3206
lines changed

Some content is hidden

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

544 files changed

+43003
-3206
lines changed

ChangeLog.md

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
1-
## 2016.02.02 version 1.1.1
2-
* Azure RemoteApp: Organizational Unit in Azure RemoteApp RDFE cmdlets now accepts Unicode characters.
1+
## 2016.02.04 version 1.2.1
2+
* Fix installer issue - remove PSGallery modules on install
3+
4+
## 2016.02.03 version 1.2.0
5+
* Azure RemoteApp:
6+
* Organizational Unit in Azure RemoteApp RDFE cmdlets now accepts Unicode characters.
7+
* Azure Stack Admin:
8+
* New module for the management of azure stack administrative resources such as plan, offer, subscription, resource provider and
9+
gallery items.
10+
* Azure Stack Storage Admin:
11+
* New module for the management of azure stack storage administrative resources such as configuration, infrastructure and health.
12+
* Azure Operational Insights new cmdlets:
13+
* Get-AzureRmOperationalInsightsSavedSearch
14+
* Get-AzureRmOperationalInsightsSavedSeearchResults
15+
* Get-AzureRmOperationalInsightsSavedSearches
16+
* Get-AzureRmOperationalInsightsSchema
17+
* Get-AzureRmOperationalInsightsSearchResult
18+
* Get-AzureRmOperationalInsightsSearchResultUpdate
19+
* Remove-AzureRmOperationalInsightsSavedSearch
20+
* Remove-AzureRmOperationalInsightsSavedSearch
21+
* Set-AzureRmOperationalInsightsSavedSearch
22+
* Add-AzureRmAccount fixed issue with wrong credential message
23+
* Get-AzureRmSubscription cmdlet now returns paginated results
24+
* Update-AzureRM now only updates when need unless -Force is used
25+
* Added telemetry to ARM and ASM cmdlets
26+
327
## 2016.01.12 version 1.1.0
428
* Azure SQL Database: Threat Detection policies:
529
* Using new Threat Detection Types

build.proj

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
<CmdletSolutionsToBuild Include=".\src\ServiceManagement\ServiceManagement.sln"
5454
Condition=" '$(Scope)' == 'ServiceManagement' or '$(Scope)' == 'AzureStorage' "/>
5555
<SetupSln Include=".\setup\azurepowershell.sln" />
56+
<StaticAnalysis Include=".\tools\StaticAnalysis\StaticAnalysis.sln" />
5657
</ItemGroup>
5758

5859
<!--
@@ -161,6 +162,14 @@
161162
Properties="Configuration=$(Configuration);Platform=Any CPU"
162163
ContinueOnError="false"
163164
Condition=" '$(Scope)' == 'all' "/>
165+
166+
<MSBuild
167+
Projects="@(StaticAnalysis)"
168+
Targets="Build"
169+
Properties="Configuration=Debug;Platform=Any CPU"
170+
ContinueOnError="false" />
171+
172+
<CallTarget Targets="DependencyAnalysis" />
164173

165174
<CallTarget Targets="CodeSignInstaller"
166175
Condition=" '$(CodeSign)' == 'true' and '$(Scope)' == 'all'" />
@@ -280,6 +289,12 @@
280289
<Copy SourceFiles="@(InstallersToSign)" DestinationFolder="signed" Condition="$(DelaySign)" />
281290
</Target>
282291

292+
<!-- Run Dependecy Analyzer -->
293+
<Target Name="DependencyAnalysis">
294+
<Message Importance="high" Text="Running Dependency Analysis..." />
295+
<Exec Command="$(MSBuildProjectDirectory)\src\Package\StaticAnalysis.exe $(MSBuildProjectDirectory)\src\Package\$(Configuration) $(MSBuildProjectDirectory)\src\Package"/>
296+
</Target>
297+
283298
<!-- Publish all packages -->
284299
<Target Name="Publish">
285300
<Error Condition=" '$(NuGetKey)' == '' " Text="You must provide the NuGetKey parameter to the build: /p:NuGetKey=YOUR_PUBLISHING_KEY" />

setup/azurecmd.wxs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
33

4-
<?define productName="Microsoft Azure PowerShell - January 2016" ?>
4+
<?define productName="Microsoft Azure PowerShell - February 2016" ?>
55
<?define sourceDir="$(var.SolutionDir)..\src\Package\$(var.Configuration)" ?>
66
<?define caSourceDir="$(var.SolutionDir)setup\bin\$(var.Configuration)" ?>
77

8-
<?define version="1.1.0" ?>
8+
<?define version="1.2.1" ?>
99

1010
<Product Id="*"
1111
Name="$(var.productName)"
@@ -102,6 +102,11 @@
102102
<CustomAction Id="SetExecutionPolicy" Property="POWERSHELLEXE" ExeCommand="-NoLogo -NoProfile -WindowStyle Hidden -NonInteractive -ExecutionPolicy Bypass -Command &quot;. \&quot;[PowerShellFolder]SetExecutionPolicy.ps1\&quot;&quot;" Execute="deferred" Impersonate="no" Return="check"/>
103103
<CustomAction Id="RemoveGalleryModules" Property="POWERSHELLEXE" ExeCommand="-NoLogo -NoProfile -WindowStyle Hidden -NonInteractive -ExecutionPolicy Bypass -Command &quot;. \&quot;[PowerShellFolder]RemoveGalleryModules.ps1\&quot;&quot;" Execute="deferred" Impersonate="no" Return="check"/>
104104

105+
<InstallExecuteSequence>
106+
<Custom Action="RemoveGalleryModules" After="CreateShortcuts">NOT Installed</Custom>
107+
<Custom Action="SetExecutionPolicy" After="RemoveGalleryModules">NOT Installed</Custom>
108+
</InstallExecuteSequence>
109+
105110
<WixVariable Id="WixUILicenseRtf" Value="$(var.ProjectDir)\media\License.rtf" />
106111
<UIRef Id="WixUI_Minimal" />
107112
<WixVariable Id="WixUIBannerBmp" Value="media\bannrbmp.bmp" />

0 commit comments

Comments
 (0)