I work at a company that has plenty of Azure subscriptions. In Visual Studio, it appears that my 'DefaultAzureSubscription' will not change (or I just dont know how to do it).
For example, I use the below method to initialize my subscription that I want to work in:
public async Task CreateCommonClient()
{
ArmClient = GetArmClient();
Subscription = await ArmClient.GetDefaultSubscriptionAsync();
}
It always defaults to subscription that I do not want to work in.
Does anyone know how to change VS default subscriptions? Please and thank you!