Skip to content

Commit 6c18a04

Browse files
committed
2 parents 4284699 + f151f39 commit 6c18a04

File tree

2,735 files changed

+664128
-131104
lines changed

Some content is hidden

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

2,735 files changed

+664128
-131104
lines changed

AzurePowershell.Test.targets

Lines changed: 103 additions & 35 deletions
Large diffs are not rendered by default.

ChangeLog.txt

Lines changed: 395 additions & 23 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<meta name="google-site-verification" content="tZgbB2s-hTI0IePQQRCjHqL_Vf0j_XJmehXAHJerrn4" />
12
# Microsoft Azure PowerShell
23

34
This repository contains a set of PowerShell cmdlets for developers and administrators to develop, deploy and manage Microsoft Azure applications.
@@ -28,9 +29,9 @@ This repository contains a set of PowerShell cmdlets for developers and administ
2829
* Log streaming
2930
* Save log
3031
* Cloud Services
31-
* Create scaffolding for cloud service and role. Role support includes Node.js, PHP, Django and Cache.
32+
* Create scaffolding for cloud service and role. Role support includes Node.js and PHP.
3233
* Manage cloud service and role, such as CRUD, start and stop.
33-
* Manage extension
34+
* Manage extension.
3435
* Start/Stop Azure emulator.
3536
* Manage certificate.
3637
* Manage cloud service extensions
@@ -122,7 +123,6 @@ For detail descriptions and examples of the cmdlets, type
122123
* ```help azure``` to get all the cmdlets.
123124
* ```help node-dev``` to get all Node.js development related cmdlets.
124125
* ```help php-dev``` to get all PHP development related cmdlets.
125-
* ```help python-dev``` to get all Python development related cmdlets.
126126
* ```help <cmdlet name>``` to get the details of a specific cmdlet.
127127

128128
## Supported Environments
@@ -294,4 +294,4 @@ If you encounter any bugs with the library please file an issue in the [Issues](
294294

295295
# Learn More
296296

297-
* [Microsoft Azure Script Center](http://www.azure.microsoft.com/en-us/documentation/scripts/)
297+
* [Microsoft Azure Script Center](http://www.azure.microsoft.com/en-us/documentation/scripts/)

build.proj

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
</ItemGroup>
2626

2727
<UsingTask
28-
AssemblyFile="$(MSBuildProjectDirectory)\packages\xunit.runners.2.0.0-beta4-build2738\tools\xunit.runner.msbuild.dll"
28+
AssemblyFile="$(MSBuildProjectDirectory)\packages\xunit.runner.console.2.0.0\tools\xunit.runner.msbuild.dll"
2929
TaskName="Xunit.Runner.MSBuild.xunit" />
3030

3131
<!-- Clean the build in all configurations -->
@@ -88,14 +88,25 @@
8888
<NuGetCache Include="$(LOCALAPPDATA)\NuGet\Cache\*.nupkg"/>
8989
</ItemGroup>
9090

91-
<!-- Delete NuGet cache-->
91+
<!-- Delete NuGet cache-->
9292
<Delete Files="@(NuGetCache)" />
93+
94+
<Delete Files="$(NuGetRestoreConfigFile)" />
95+
<WriteLinesToFile
96+
File="$(NuGetRestoreConfigFile)"
97+
Lines="&lt;configuration&gt;&lt;/configuration&gt;"
98+
Overwrite="true"
99+
Encoding="Unicode"/>
100+
101+
<Exec Command="$(NuGetCommand) sources add -Name LocalFeed -Source &quot;$(MSBuildProjectDirectory)\tools\LocalFeed&quot; $(NuGetRestoreConfigSwitch)"/>
93102

94103
<!-- Restore packages -->
95-
<Exec Command="$(NuGetCommand) restore $(MSBuildProjectDirectory)\src\AzurePowerShell.sln" ContinueOnError="false" />
104+
<Exec Command="$(NuGetCommand) restore $(MSBuildProjectDirectory)\src\AzurePowerShell.sln $(NuGetRestoreConfigSwitch)" ContinueOnError="false" />
96105

97106
<!--Restore the xunit runner needed to run unit tests-->
98107
<Exec Command="$(NuGetCommand) restore $(MSBuildProjectDirectory)\packages.config -PackagesDirectory $(MSBuildProjectDirectory)\packages" />
108+
109+
<Delete Files="$(NuGetRestoreConfigFile)" />
99110
</Target>
100111

101112
<!-- Build all flavors of the Cmdlets -->
@@ -154,7 +165,7 @@
154165
<!-- Do everything possible -->
155166
<Target
156167
Name="Full"
157-
DependsOnTargets="ForceRestorePackages;Clean;BuildDebug;BuildRelease;Test;BuildSetupDebug;BuildSetupRelease" />
168+
DependsOnTargets="ForceRestorePackages;Clean;BuildDebug;Test;BuildSetupDebug" />
158169

159170
<!-- Build the Cmdlets in Release configuration -->
160171
<Target Name="BuildRelease" DependsOnTargets="ForceRestorePackages">
@@ -180,15 +191,15 @@
180191

181192
<PropertyGroup>
182193
<RunTestLive Condition="'$(RunTestLive)' == ''">false</RunTestLive>
183-
<XUnitExcludedTrait Condition="!$(RunTestLive)">RunType=LiveOnly</XUnitExcludedTrait>
194+
<XUnitIncludedTrait Condition="!$(RunTestLive)">AcceptanceType=CheckIn</XUnitIncludedTrait>
184195
</PropertyGroup>
185196
<!-- Note: all testing related target should go to 'AzurePowershell.test.targets' file except the one used by CI run -->
186197
<Import Project="$(MSBuildThisFileDirectory)AzurePowershell.test.targets"/>
187198

188199
<!-- Run checkin tests for each pull request -->
189200
<Target Name="Test" DependsOnTargets="BuildDebug;BeforeRunTests">
190201
<Message Importance="high" Text="Running check in tests..." />
191-
<CallTarget Targets="InvokeXUnit; TestHDInsight; TestServiceManagement; TestServiceManagementExtensions; TestSqlDatabase; TestStorage; TestDSCExtension_x64"/>
202+
<CallTarget Targets="InvokeXUnit"/>
192203
</Target>
193204

194205
<!-- Run Full switch with scenario tests -->

packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="xunit.runners" version="2.0.0-beta4-build2738" />
3+
<package id="xunit.runner.console" version="2.0.0" />
44
<package id="xunit.runners" version="1.9.2" />
55
</packages>

setup/azurecmd.wxs

Lines changed: 2 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">
33

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

8-
<?define version="0.8.16" ?>
8+
<?define version="0.9.5" ?>
99
<?define versionedStartMenuFolder="Microsoft Azure" ?>
1010
<?define staleStartMenuFolder="Windows Azure" ?>
1111

0 commit comments

Comments
 (0)