I am getting this error when I try to compile my Blazor WebAssembly app.
error CS0234: The type or namespace name 'ApplicationPartAttributeAttribute' does not exist in the namespace 'Microsoft.AspNetCore.Mvc.ApplicationParts' (are you missing an assembly reference?)
The reason is because I am using a library which uses Microsoft.AspNetCore.Mvc.Core and it seems to not to be very compatible with blazor Web Assembly,
I did tested creating a server side blazor app and It works fine.
Is there any way to make the error "dissapear"? I would like to use that library and I would like to stick with Blazor WA.