I'm new to Visual Studio 2015. I'm working on porting a solution from VS 2010 to VS 2015 and Entity Framework and I'm working through the compile errors. Unfortunately, to get the error messages to display in the Error List, I have to open the files first. My filter options are "Entire Solution", the show errors is toggled on, warnings are off and "Build + IntelliSense" is selected.
With no files opened, I'm getting 5 errors but when I open one of my files with errors, the list then shows all the errors for that file as well. When I clost the file and rebuild, I'm back to the original 5 error messages. I've tried the different filter options in different combinations but I'm not able to get ALL the compile errors to be displayed. I have to open a few files, fix the compile errors, open a few more, and so on.
Does anyone know if there is a fix for this?
Thanks,
Carlo.
As there has been no solution to this thread, I'll add mine which I tested in VS2017 15.5.2 (.NET Core 2.0) and might work with VS2015.
I found all my view-errors, by publishing:
dotnet publish -c releaseI was not able to get the output when using the runtime-identifier flag (
dotnet publish -c release -r win10-x64).Hope it helps someone.