Fluent SDK doesn't run under ASP.NET in .Net 4.5.2
See original GitHub issueGuys, I might be doing something wrong, but I can’t get anything to work at all.
AzureCredentials azureCredentials = new AzureCredentials(servicePrincipalLoginInformation, TenantId, AzureEnvironment.AzureGlobalCloud);
Azure azure = Azure.Authenticate(azureCredentials).WithSubscription(SubscriptionId) as Azure;
This is my auth code. Doesn’t return any error. After I am trying to provision a Resource group and its just stuck without any errors or anything. The same behavior for any api call. Any idea?
message.InnerText = "Resource Group Doesnt Exists " + DateTime.Now.ToShortDateString();
var groupName = SdkContext.RandomResourceName(dealerID + "_" +"rsGroup_", 24);
resourceGroup = azure.ResourceGroups
.Define(groupName)
.WithRegion(Region.AustraliaSouthEast)
.Create();
message.InnerText = "Creating Resource Group " + DateTime.Now.ToShortDateString();
Issue Analytics
- State:
- Created 6 years ago
- Comments:25 (8 by maintainers)
Top Results From Across the Web
How can I add .NET framework 4.5.2 to Asp.Net Core
1 Answer 1 ... There are two versions of .NET Core, .NET Standard version (Portable version, which you use in your project) and...
Read more >Known issues when you upgrade .NET Framework ...
This article helps you resolve the problem where Microsoft .NET Framework applications can't run when you upgrade .NET Framework 4.5.2 to .NET ......
Read more >My First Experience Migrating a .NET App to Core
I recently migrated an old .NET Framework 4.5.2 app to .NET Core 2.0. This isn't a guide to that process and certainly isn't...
Read more >Building Applications for Different .NET Framework Versions
NET framework 4 or newer will run on the preinstalled CLR 4 based .NET framework version. They might still fail to run properly...
Read more >How to run Background Tasks in ASP.NET
NET application just needs one background task to runs an a basic scheduled ... NET 4.5.2 added QueueBackgroundWorkItem as a new API.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@fredcicles Sync methods should also be fixed in the next release (shipping end of August)
@abhi1509 - FYI, just verified. CheckExistence hangs while CheckExistenceAsync works fine. here is the code:
This issue is blocking Create scenarios where we create each dependent resource in parallel.