Last active
February 4, 2018 01:39
-
-
Save jjgriff93/8eaba66ecf0d5ce3f0f0f148212a613f to your computer and use it in GitHub Desktop.
Azure .NET mgmt API - basic program.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using Microsoft.Azure.Management.Compute.Fluent; | |
| using Microsoft.Azure.Management.Compute.Fluent.Models; | |
| using Microsoft.Azure.Management.Fluent; | |
| namespace FluentAPIApp | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| var azure = Azure.Authenticate("Azure-authentication.txt").WithDefaultSubscription(); | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment