Share via


Deploy to Azure Resource Groups using the SDK

  Authentication Start by adding the ADAL nuget package. Install-Package Microsoft.IdentityModel.Clients.ActiveDirectory Then add this file to your project: The first line of code in your app will be… string token = AuthHelper.GetAuthorizationHeader(); That’s it for authentication!     Setup the Resource Management Client Start by adding the Azure Resource Management NuGet package. Install-Package Microsoft.Azure.Management.Resources Then...