AspNetIdentity icon indicating copy to clipboard operation
AspNetIdentity copied to clipboard

public virtual TKey ConvertIdFromString(string id) does not work for Guid

Open bprodduturi opened this issue 2 years ago • 0 comments

Could you please change the ConvertIdFromString method to return using this code in the Microsoft.AspNetIdentity.Owin.SignInManager class:

return (TKey)TypeDescriptor.GetConverter(typeof(TKey)).ConvertFromInvariantString(id);

I downloaded the source code, made this change on my local. However, when I try to run my project with this new update I get an error about StrongName verification.

bprodduturi avatar May 09 '22 17:05 bprodduturi