Skip to content

Commit 7d08c4f

Browse files
committed
Conflicts: setup/azurecmdfiles.wxi src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/Commands.ExpressRoute.csproj src/ServiceManagement/ExpressRoute/Commands.ExpressRoute/packages.config src/ServiceManagement/Services/Commands.Test/Commands.Test.csproj src/ServiceManagement/Services/Commands.Test/packages.config
2 parents bc9e8b8 + 7398190 commit 7d08c4f

File tree

815 files changed

+155216
-55893
lines changed

Some content is hidden

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

815 files changed

+155216
-55893
lines changed

AzurePowershell.Test.targets

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
<DataFactoryManagerTestDebug>.\src\ResourceManager\DataFactories\Commands.DataFactories.Test\bin\Debug\Microsoft.Azure.Commands.DataFactories.Test.dll</DataFactoryManagerTestDebug>
1717
<StreamAnalyticsManagerTestDebug>.\src\ResourceManager\StreamAnalytics\Commands.StreamAnalytics.Test\bin\Debug\Microsoft.Azure.Commands.StreamAnalytics.Test.dll</StreamAnalyticsManagerTestDebug>
1818
<BatchTestDebug>.\src\ResourceManager\Batch\Commands.Batch.Test\bin\Debug\Microsoft.Azure.Commands.Batch.Test.dll</BatchTestDebug>
19+
<WebsitesTestDebug>.\src\ResourceManager\Websites\Commands.Websites.Test\bin\Debug\Microsoft.Azure.Commands.Websites.Test.dll</WebsitesTestDebug>
20+
<RemoteAppTestDebug>.\src\ServiceManagement\RemoteApp\Commands.RemoteApp.Test\bin\Debug\Microsoft.Azure.Commands.RemoteApp.Tests.dll</RemoteAppTestDebug>
1921
<ServiceManagementTestDebug>.\src\ServiceManagement\Compute\Commands.ServiceManagement.Test\bin\Debug\Microsoft.WindowsAzure.Commands.ServiceManagement.Test.dll</ServiceManagementTestDebug>
2022
<ServiceManagementExtensionsTestDebug>.\src\ServiceManagement\Compute\Commands.ServiceManagement.Extensions.Test\bin\Debug\Microsoft.WindowsAzure.Commands.ServiceManagement.Extensions.Test.dll</ServiceManagementExtensionsTestDebug>
2123
<SqlDatabaseTestDebug>.\src\ServiceManagement\Sql\Commands.SqlDatabase.Test\bin\Debug\Microsoft.WindowsAzure.Commands.SqlDatabase.Test.dll</SqlDatabaseTestDebug>
@@ -40,8 +42,10 @@
4042
<XUnitTests Include=".\src\ResourceManager\DataFactories\Commands.DataFactories.Test\bin\Debug\Microsoft.Azure.Commands.DataFactories.Test.dll"/>
4143
<XUnitTests Include=".\src\ResourceManager\StreamAnalytics\Commands.StreamAnalytics.Test\bin\Debug\Microsoft.Azure.Commands.StreamAnalytics.Test.dll"/>
4244
<XUnitTests Include=".\src\ResourceManager\Batch\Commands.Batch.Test\bin\Debug\Microsoft.Azure.Commands.Batch.Test.dll"/>
45+
<XUnitTests Include=".\src\ResourceManager\Websites\Commands.Websites.Test\bin\Debug\Microsoft.Azure.Commands.Websites.Test.dll"/>
4346
<XUnitTests Include=".\src\ResourceManager\KeyVault\Commands.KeyVault.Test\bin\Debug\Microsoft.Azure.Commands.KeyVault.Test.dll"/>
4447
<XUnitTests Include=".\src\ServiceManagement\ManagedCache\Commands.ManagedCache.Test\bin\Debug\Microsoft.Azure.Commands.ManagedCache.Test.dll"/>
48+
<XUnitTests Include=".\src\ServiceManagement\RemoteApp\Commands.RemoteApp.Test\bin\Debug\Microsoft.Azure.Commands.RemoteApp.Tests.dll"/>
4549
<XUnitTests Include=".\src\Common\Commands.ScenarioTest\bin\Debug\Microsoft.WindowsAzure.Commands.ScenarioTest.dll"/>
4650
<XUnitTests Include=".\src\ServiceManagement\RecoveryServices\Commands.RecoveryServices.Test\bin\Debug\Microsoft.Azure.Commands.RecoveryServices.Test.dll"/>
4751
<XUnitTests Include=".\src\ServiceManagement\StorSimple\Commands.StorSimple.Test\bin\Debug\Microsoft.WindowsAzure.Commands.StorSimple.Test.dll"/>
@@ -90,6 +94,17 @@
9094
ExcludeTraits="$(XUnitExcludedTrait)" MaxParallelThreads="0" ParallelizeAssemblies="false" ParallelizeTestCollections="false" />
9195
</Target>
9296

97+
98+
<Target Name="TestRemoteApp">
99+
<Xunit.Runner.MSBuild.xunit Assemblies="$(RemoteAppTestDebug)" Html="$(TestOutputDirectory)\RemoteAppTestDebug.xunit.dll.html" Verbose="false"
100+
ExcludeTraits="$(XUnitExcludedTrait)" MaxParallelThreads="0" ParallelizeAssemblies="false" ParallelizeTestCollections="false" />
101+
</Target>
102+
103+
<Target Name="TestWebsites">
104+
<Xunit.Runner.MSBuild.xunit Assemblies="$(WebsitesTestDebug)" Html="$(TestOutputDirectory)\WebsitesTestDebug.xunit.dll.html" Verbose="false"
105+
ExcludeTraits="$(XUnitExcludedTrait)" MaxParallelThreads="0" ParallelizeAssemblies="false" ParallelizeTestCollections="false" />
106+
</Target>
107+
93108
<Target Name="TestDataFactoryManager">
94109
<Xunit.Runner.MSBuild.xunit Assemblies="$(DataFactoryManagerTestDebug)" Html="$(TestOutputDirectory)\DataFactoryManagerTestDebug.xunit.dll.html" Verbose="false"
95110
ExcludeTraits="$(XUnitExcludedTrait)" MaxParallelThreads="0" ParallelizeAssemblies="false" ParallelizeTestCollections="false" />
@@ -291,12 +306,12 @@
291306
ContinueOnError="false" />
292307
</Target>
293308

294-
<Target Name="AzureRTFuntional" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
295-
<Message Importance="high" Text="Running AzureRT Funtional tests..." />
309+
<Target Name="AzureRTFunctional" DependsOnTargets="Clean;BuildDebug;BeforeRunTests">
310+
<Message Importance="high" Text="Running AzureRT Functional tests..." />
296311

297-
<Delete Files="$(TestOutputDirectory)\RTFuntionalDebug.trx" />
312+
<Delete Files="$(TestOutputDirectory)\RTFunctionalDebug.trx" />
298313
<Exec
299-
Command="MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(AzureRTTestSettings) /category:Functional /resultsfile:$(TestOutputDirectory)\RTFuntionalDebug.trx"
314+
Command="MSTest.exe /testcontainer:$(AzureRTTestContainer) /testsettings:$(AzureRTTestSettings) /category:Functional /resultsfile:$(TestOutputDirectory)\RTFunctionalDebug.trx"
300315
ContinueOnError="false" />
301316
</Target>
302317

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
If you would like to become an active contributor to this project please follow the instructions provided in [Microsoft Azure Projects Contribution Guidelines](http://windowsazure.github.com/guidelines.html).
44

5-
If you encounter any bugs with Microsoft Azure PowerShell please file an issue in the [Issues](https://github.com/WindowsAzure/azure-sdk-tools/issues) section of the project.
5+
If you encounter any bugs with Microsoft Azure PowerShell please file an issue in the [Issues](https://github.com/Azure/azure-powershell/issues) section of the project.

ChangeLog.txt

Lines changed: 159 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,162 @@
1+
2015.03.31 version 0.8.16
2+
* Azure Data Factory:
3+
* Fixes for clean install and subscription registration issues
4+
* Azure HDInsight:
5+
* Support for creating, deleting, listing, and submitting jobs to HDInsight clusters with Linux Operating System.
6+
* Azure Compute
7+
* Fix pipeline issues with Get-AzureVM (#3047)
8+
* Fixed DateTime Overflow issue
9+
* Azure Batch
10+
* Added cmdlets
11+
* Add/Remove Batch Pools
12+
* Get-BatchTaskFileContent
13+
* Get-BatchTaskFile
14+
* Azure Insights
15+
* Added cmdlets
16+
* Add-AutoscaleSetting
17+
* Get-AutoscaleHistory
18+
* Get-AutoscaleSetting
19+
* New-AutoscaleProfile
20+
* New-AutoscaleRule
21+
* Remove-AutoscaleSetting
22+
* Get-Metrics
23+
* Get-MetricDefinitions
24+
* Format-MetricsAsTable
25+
* Azure Websites
26+
* Added cmdlet Get-AzureWebhostingPlanMetrics
27+
* Added Premium support
28+
* Renamed WebSites to WebApp
29+
* AzureProfile
30+
* Made AzureProfile serializable to support workflow scenarios
31+
32+
2015.03.11 version 0.8.15.1
33+
* Fixes for clean install and subscription registration issues
34+
35+
2015.03.09 version 0.8.15
36+
* Azure RemoteApp: New RemoteApp cmdlets:
37+
* Add-AzureRemoteAppUser
38+
* Disconnect-AzureRemoteAppSession
39+
* Get-AzureRemoteAppCollection
40+
* Get-AzureRemoteAppCollectionUsageDetails
41+
* Get-AzureRemoteAppCollectionUsageSummary
42+
* Get-AzureRemoteAppLocation
43+
* Get-AzureRemoteAppOperationResult
44+
* Get-AzureRemoteAppPlan
45+
* Get-AzureRemoteAppProgram
46+
* Get-AzureRemoteAppSession
47+
* Get-AzureRemoteAppStartMenuProgram
48+
* Get-AzureRemoteAppTemplateImage
49+
* Get-AzureRemoteAppUser
50+
* Get-AzureRemoteAppVNet
51+
* Get-AzureRemoteAppVpnDevice
52+
* Get-AzureRemoteAppVpnDeviceConfigScript
53+
* Get-AzureRemoteAppWorkspace
54+
* Invoke-AzureRemoteAppSessionLogoff
55+
* New-AzureRemoteAppCollection
56+
* New-AzureRemoteAppTemplateImage
57+
* New-AzureRemoteAppVNet
58+
* Publish-AzureRemoteAppProgram
59+
* Remove-AzureRemoteAppCollection
60+
* Remove-AzureRemoteAppTemplateImage
61+
* Remove-AzureRemoteAppUser
62+
* Remove-AzureRemoteAppVNet
63+
* Rename-AzureRemoteAppTemplateImage
64+
* Reset-AzureRemoteAppVpnSharedKey
65+
* Send-AzureRemoteAppSessionMessage
66+
* Set-AzureRemoteAppCollection
67+
* Set-AzureRemoteAppVNet
68+
* Set-AzureRemoteAppWorkspace
69+
* Unpublish-AzureRemoteAppProgram
70+
* Update-AzureRemoteAppCollection
71+
72+
* Storage: new cmdlets
73+
* Get-AzureStorageContainerStoredAccessPolicy
74+
* Get-AzureStorageQueueStoredAccessPolicy
75+
* Get-AzureStorageTableStoredAccessPolicy
76+
* New-AzureStorageContainerStoredAccessPolicy
77+
* New-AzureStorageQueueStoredAccessPolicy
78+
* New-AzureStorageTableStoredAccessPolicy
79+
* Remove-AzureStorageContainerStoredAccessPolicy
80+
* Remove-AzureStorageQueueStoredAccessPolicy
81+
* Remove-AzureStorageTableStoredAccessPolicy
82+
* Set-AzureStorageContainerStoredAccessPolicy
83+
* Set-AzureStorageQueueStoredAccessPolicy
84+
* Set-AzureStorageTableStoredAccessPolicy
85+
86+
* Azure Recovery Services
87+
* New cmdlets:
88+
* Create and enumerate Vaults & Sites, download Vault Settings file
89+
* New- AzureSiteRecoveryVault
90+
* Get-AzureSiteRecoveryVault
91+
* New- AzureSiteRecoverySite
92+
* Get- AzureSiteRecoverySite
93+
* Get-AzureSiteRecoveryVaultSettingsFile
94+
* Enumerate Networks and manage Network Mappings
95+
* Get- AzureSiteRecoveryNetwork
96+
* New- AzureSiteRecoveryNetworkMapping
97+
* Get- AzureSiteRecoveryNetworkMapping
98+
* Remove- AzureSiteRecoveryNetworkMapping
99+
* Enumerate Storages and manage Storage Mappings
100+
* Get-AzureSiteRecoveryStorage
101+
* New- AzureSiteRecoveryStorageMapping
102+
* Get-AzureSiteRecoveryStorageMapping
103+
* Remove- AzureSiteRecoveryStorageMapping
104+
* Create, associated, and dissociate protection profile object
105+
* New- AzureSiteRecoveryProtectionProfileObject
106+
* Start-AzureSiteRecoveryProtectionProfileAssociationJob
107+
* Start-AzureSiteRecoveryProtectionProfileDissociationJob
108+
* Update VM properties and sync owner information
109+
* Set-AzureSiteRecoveryVM
110+
* Update-AzureSiteRecoveryProtectionEntity
111+
* Changed cmdlets:
112+
* Get-AzureSiteRecoveryJob
113+
* Set-AzureSiteRecoveryProtectionEntity – protection profile is introduced
114+
* Start-AzureSiteRecoveryCommitFailoverJob
115+
* Start-AzureSiteRecoveryPlannedFailoverJob
116+
* Start-AzureSiteRecoveryTestFailoverJob
117+
118+
* Azure ExpressRoute cmdlet updates
119+
* Fixed bugs in:
120+
* New-AzureDedicatedCircuit
121+
* New-AzureDedicatedCircuitLink
122+
* New-AzureBGPPeering
123+
* Remove-AzureDedicatedCircuit
124+
* Remove-AzureDedicatedCircuitLink
125+
* Remove-AzureBGPPeering
126+
* Added new cmdlet:
127+
* Update-AzureDedicatedCircuitBandwidth
128+
129+
* Azure SQL Database: new cmdlets for managing database dynamic data masking policies:
130+
* Get-AzureSqlDatabaseDataMaskingPolicy
131+
* Set-AzureSqlDatabaseDataMaskingPolicy
132+
* New-AzureSqlDatabaseDataMaskingRule
133+
* Get-AzureSqlDatabaseDataMaskingRule
134+
* Set-AzureSqlDatabaseDataMaskingRule
135+
* Remove-AzureSqlDatabaseDataMaskingRule
136+
137+
* Azure Batch: new cmdlets:
138+
* Get-AzureBatchPool
139+
* Get-AzureBatchWorkItem
140+
* Get-AzureBatchJob
141+
* Get-AzureBatchTask
142+
143+
* Azure Compute: new features
144+
* Added ForceUpdate parameter for the following cmdlets:
145+
* Set-AzureVMExtension
146+
* Set-AzureVMCustomScriptExtension
147+
* Set-AzureVMAccessExtension
148+
* Show 'Regions' property for Get-AzureVMAvailableExtensions cmdlet
149+
* Add 'ResizedSizeInGB' pramater for the following cmdlets
150+
* Update-AzureDisk
151+
* Set-AzureOSDisk
152+
* Set-AzureDataDisk (DiskName parameter is also added along with ResizedSizeInGB)
153+
154+
* AzureProfile:
155+
* New cmdlets to manage in-memory profiles
156+
* New-AzureProfile: Create a new in-memory Profile
157+
* Select-AzureProfile: Select the profile to be used in the current session
158+
* Added -Profile parameter to every cmdlet - the cmdlet will use the passed-in profile to authenticate with Azure
159+
1160
2015.02.12 version 0.8.14
2161
* StorSimple: New StorSimple commands in AzureServiceManagement mode:
3162
* GetAzureStorSimpleAccessControlRecord

0 commit comments

Comments
 (0)