dlmelendez / identityazuretable

This project provides a high performance cloud solution for ASP.NET Identity Core using Azure Table storage replacing the Entity Framework / MSSQL provider.
MIT License
104 stars 27 forks source link

Blazor / NET 8 #105

Closed github5775 closed 10 months ago

github5775 commented 12 months ago

Dave

Do you see any issues with using the Identity part of this project with Blazor and NET 8, as is, other than adjusting how it's added in DI? (I may or may not need the actual Account pages.)

Michael

dlmelendez commented 10 months ago

I will take a look closer to the .net 8 release this month.

dlmelendez commented 10 months ago

Looks like there is no breaking changes in .net8 rc2. I will merge rel/8.0 to master and release when .net8 goes GA..

github5775 commented 10 months ago

That makes sense...thank you. I am looking to substitute your Table lib into this Server project to test it with hosted WASM:

https://github.com/carlfranklin/AddIdentityWasm/blob/master/AddIdentityWasm/Server/Program.cs

builder.Services.AddDefaultIdentity<ApplicationUser>(options=> options.SignIn.RequireConfirmedAccount = true) .AddRoles<IdentityRole>() .AddEntityFrameworkStores<ApplicationDbContext>();