I'm struggling to find why a certain assembly is not loaded in a dotnetcore 3.1 webproject
(I'm getting Could not load file or assembly 'MyCool.Services.Interfaces, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null')
If this was a netFw project I would simply fire up Fuslogvw and find a lot of information about why the assembly binding fails.
Maybe I've overlooked, but I haven't found an alternative way to find this kind of information for a dotnet core project.
A previous post asked it here but doesn't have an answer : What's the replacement for fuslogvw in .net core 2?
I also already followed the advice of this SO post : Inspect dependencies for dynamically loaded library in .net core and set COREHOST_TRACE=1 in the package manager console.
But it seems it's not useful for web projects running is IIS express.. (the log states dotnet : Couldn't find a project to run. while I have my project started)
Any advice on how the trace my failed assembly binding would be much appreciated !
