Skip to content

Commit 98df5c8

Browse files
committed
removed comments in program.cs
1 parent db91d7e commit 98df5c8

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

Elastacloud.FluentExamples/Program.cs

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ static void Main(string[] args)
3030
ProcessWorkflow(getSettings.ToString());
3131

3232
// Add the test get blob API - before running this create a storage account using AMS called stackedstorage
33+
// TO CHECK THIS DEMO CREATE THE STORAGE ACOUNT AND CONTAINER "docs" AND THEN UPLOAD A "test.txt" FILE
3334
IWorkflow getBlob = new BuildGetBlobRequest(Settings.SubscriptionId, Settings.ManagementCertificate);
3435
Workflows.Add(getBlob.ToString(), getBlob);
3536
ProcessWorkflow(getBlob.ToString());
@@ -39,32 +40,32 @@ static void Main(string[] args)
3940
// test paas orchestration
4041
IWorkflow fluentDeployment = new WorkflowFluentDeployment(Settings.SubscriptionId, Settings.ManagementCertificate);
4142
Workflows.Add(fluentDeployment.ToString(), fluentDeployment);
42-
//ProcessWorkflow(fluentDeployment.ToString());
43+
ProcessWorkflow(fluentDeployment.ToString());
4344

4445
// create a virtual machine
4546
IBuilder virtualMachine = new BuildVirtualMachine(args[0], Settings.ManagementCertificate);
4647
Builders.Add(virtualMachine.ToString(), virtualMachine);
47-
//ProcessBuilder(virtualMachine.ToString());
48+
ProcessBuilder(virtualMachine.ToString());
4849

4950
// test linq to azure with storage
5051
IWorkflow linqToStorage = new WorkflowLinqToStorage(Settings.SubscriptionId, Settings.ManagementCertificate);
5152
Workflows.Add(linqToStorage.ToString(), linqToStorage);
52-
//ProcessWorkflow(linqToStorage.ToString());
53+
ProcessWorkflow(linqToStorage.ToString());
5354

5455
// test create a mobile services deployment
5556
IBuilder mobileService = new BuildMobileService(Settings.SubscriptionId, Settings.ManagementCertificate);
5657
Builders.Add(mobileService.ToString(), mobileService);
57-
//ProcessBuilder(mobileService.ToString());
58+
ProcessBuilder(mobileService.ToString());
5859

5960
// test role system watcher
6061
var watcher = new WorkflowRoleSystemWatcher(Settings.SubscriptionId, Settings.ManagementCertificate);
6162
Workflows.Add(watcher.ToString(), watcher);
62-
//ProcessWorkflow(watcher.ToString());
63+
ProcessWorkflow(watcher.ToString());
6364

6465
// test paas build
6566
var workflowSSL = new WorkflowFluentDeploymentWithSSL(Settings.SubscriptionId, Settings.ManagementCertificate);
6667
Workflows.Add(workflowSSL.ToString(), workflowSSL);
67-
//ProcessWorkflow(workflowSSL.ToString());
68+
ProcessWorkflow(workflowSSL.ToString());
6869

6970
Console.WriteLine("Press [ENTER] to exit");
7071
Console.Read();

0 commit comments

Comments
 (0)