I have a ASP .NET CORE application, targeted in verion 6.0.
When I run it from Visual Studio it looks great, but when I run it using dotnet command:
dotnet webApplication1.dll
it looks like no .css styles or .js scripts where found and used. I searched this documentation but cannot find the hint how to include styles path.
I solved it by manually copying
wwwrootfolder to the\bin\Debug\net6.0directory. For some reasons it is not being copied there automatically.