-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hard to fix failing builds #328
Comments
Hey! What I typically do on build errors is use the problems view (ctrl-shift-m) since I find it to be the quickest way of getting a good visualization of what errors I've got build wise. I think it's unlikely we'll implement something to filter the build log and extract the error information and display it since I suspect the problems view is what you're actually after 🤔 |
Filtering error info is a nice feature but as I said above not essential - just putting the errors into the log as-is would be better than it is now. Nonetheless, thanks for your idea of the problems view! I disabled that because it gets huge and annoying, but if that's the only simple way I'll use it. Better than going to the shell every time! |
@stefanforsberg Quick follow up: I've been using your way for a couple of days. In the problems view:
|
@lonix1 Is the thing you're after here to be able to easily hide the problems from the extension or only show the problems from the extension? Side note: VSCode is in the process of adding some first class testing api:s which I hope can bring some form of standardization and a better home for reporting test results and errors etc. It looks like this was part of the July 2021 milestone so let's see how that develops after summer =) |
This issue is specifically talking about wanting to add a better view of the errors being returned but I have the problem of it building just fine when running |
Environment
dotnet: 5.0.301
vscode: 1.58.0
extension: 0.7.5
os: linux
Issue
When a build fails (before running tests), a little popup shows:
The output window shows:
That isn't helpful because I don't know what to fix. So I need to drop to the shell and do a
dotnet build
to find out.It would be more helpful if the log window showed the build errors.
(Or even better, filter the build errors to show just the names/paths of the buggy files.)
The text was updated successfully, but these errors were encountered: