Skip to content

Instantly share code, notes, and snippets.

@jjgriff93
Last active February 4, 2018 01:39
Show Gist options
  • Select an option

  • Save jjgriff93/8eaba66ecf0d5ce3f0f0f148212a613f to your computer and use it in GitHub Desktop.

Select an option

Save jjgriff93/8eaba66ecf0d5ce3f0f0f148212a613f to your computer and use it in GitHub Desktop.
Azure .NET mgmt API - basic program.cs
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