Azure packaging

Executing ClickToBuild.cmd generates the package for Azure including all modules available in Orchard.Web automatically
AzureSDK in requiered for this tasks. If not present, the package won't succeed, but Orchard.Web will still be built
The Orchard.Azure solution contains the required environment for implementing Azure specific providers, and unit testing
The Orchard.Azure.CloudService solution contains the CloudService enrironment to simulate Azure platform locally

--HG--
branch : dev
This commit is contained in:
Sebastien Ros
2010-05-07 12:41:37 -07:00
parent ae801b66b2
commit 7248fb6fd7
21 changed files with 1179 additions and 244 deletions

View File

@@ -24,6 +24,12 @@ namespace Orchard.Azure.Tests.Environment.Configuration {
DeleteAllBlobs( ((AzureShellSettingsManager)Loader).Container);
}
[TearDown]
public void TearDown() {
// ensure default container is empty after running tests
DeleteAllBlobs(( (AzureShellSettingsManager)Loader ).Container);
}
[Test]
public void SingleSettingsFileShouldComeBackAsExpected() {

View File

@@ -1,13 +1,9 @@
using System;
using System.Configuration;
using System.IO;
using NUnit.Framework;
using System.Diagnostics;
using Orchard.Azure.Storage;
using Microsoft.WindowsAzure;
using System.Linq;
using Microsoft.WindowsAzure.StorageClient;
using System.Text;
namespace Orchard.Azure.Tests.Storage {
[TestFixture]