visual studio 2017 solution debug error - visual-studio-2017

Friday I have installed VS2017 on my machine. I opened a test project and hit F5. Luckily enough I keep getting this error.
The program '[5548] dotnet.exe' has exited with code -2147450749 (0x80008083).
The program '[5548] dotnet.exe: Program Trace' has exited with code 0 (0x0).
No debug, no running...
Thanks

Related

error MSB6006: "midl.exe" exited with code -1073741515

I have a problem during C++ project build in VS2015 update 3. the error message is as follow:
C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V140\Microsoft.CppCommon.targets(1318,5): error MSB6006: "midl.exe" exited with code -1073741515
Edit:
This is a project which using SDK 10.0.150310.
On Windows 10 the build succeeded but on Windows 7 failed with the error as described.
The error -1073741515 == 0xC0000135 == STATUS_DLL_NOT_FOUND:
STATUS_DLL_NOT_FOUND ntstatus.h
The program can't start because %hs is missing from your computer. Try reinstalling the program to fix this problem.
So a dll is missing. Use ProcessMonitor, capture the activity and filter for DLL loading events. Now look in Result column where you see an error. Now look which DLL is missing.
using missins DLL or installing win8 SDK didn't helped. only compiling it on windows10 or windows server2016 solved the issue (stopped fighting with it because originally the code wrote on win10..)

Visual Studio stops breaking on assert()

This started happening today for a Visual Studio 2013 project but I have seen it now and then over the years in other Visual Studio versions.
Running a debug build and for some unknown reason aborts stop raising the message dialog that allows you to break and debug and instead you simple get a message in the output window and the program terminates.
R6010
- abort() has been called
The program '[9408] test_explode.exe' has exited with code 3 (0x3).
Over many years as a C++ developer this gremlin pops up now and then and I always forget how I solve it and can't see what the cause was. I'm sure someone can shed more light on what's happening and the correct fix and at a minimum I'll at least add my own notes.
A manual call to _set_error_mode(_OUT_TO_MSGBOX) somewhere in my program restores the correct behaviour. So it appears the default error mode is being set wrong by some compiler option or Visual Studio setting? I'm just not sure what.
All Debug->Exception settings are enabled.

VS C++: A task was canceled [duplicate]

After installing VS 2013 (Update 3) on windows 7 SP1 I have similar situation like in this post After installing windows 8.1 sdk visual studio cant build any win32 project and print output :
1>----— Build started: Project: ConsoleApplication1, Configuration: Debug Win32 —----
1>A task was canceled.
1>A task was canceled.
========= Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
Just to be complete,
Closing and reopening Visual Studio worked for me after I had changed the time zone and was getting the same errors as you.
I encountered the same error when I installed VS2013 update 5. During the installation my VS was open. Prior to installation of the update, I was asked to close VS but I neglected. That might have been the reason for the error although not sure about the exact cause.
After installation, the installer prompted me to restart the computer and the error was gone after I restarted my computer.
I am encountering similar problem with VS2015 update 3. Once this start happening I can't build application and can't start another instance Visual studio as it gives out of memory exception.
After looking through task lists I found out that there are many instance of conhost.exe and MSBuild.exe processes. So as temporary fix I kill all instances and try again building it is not perfect solution but works some times.
You can try run following batch commands.
Taskkill /IM MSBuild.exe /F
Taskkill /IM conhost.exe /F
Changed the time zone of system (Start>Settings>Time&language>Date&time>Time zone) to automatic, and then restarted the VS2019(on this I was facing the issue) in administrator mode. Issue got resolved for me.
I had the "A task was cancelled" error, not after updating Visual Studio or changing the time clock, but when enabled editing to a file from my version control software.
Likewise, reloading Visual Studio fixed the error.

Visual Studio 2013 debugging access issue with breakpoints

I've been having an issue with debugging my C++ programs recently in Visual Studio 2013. Normally my programs will run fine, however, when I include a breakpoint at the end of my code in order to keep the console open, I will have to manually stop the debugging of the program afterwards (Shift + F5), which will consistently cause an error saying "The debugger was unable to terminate one or more processes: [4912] .exe: Access is denied. The debugger may be unstable now. It is recommended that you save all files and exit." If I go on to continue coding and then compile again later, it will fail to compile with the error that access is denied with fatal error LNK1168, saying it cannot open the .exe for writing. This only happens when I include a breakpoint in my code, so I'm wondering if there's a fix for this, or something that I'm doing wrong? Thanks.

Visual studio 2013 "A task was cancelled"

After installing VS 2013 (Update 3) on windows 7 SP1 I have similar situation like in this post After installing windows 8.1 sdk visual studio cant build any win32 project and print output :
1>----— Build started: Project: ConsoleApplication1, Configuration: Debug Win32 —----
1>A task was canceled.
1>A task was canceled.
========= Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
Just to be complete,
Closing and reopening Visual Studio worked for me after I had changed the time zone and was getting the same errors as you.
I encountered the same error when I installed VS2013 update 5. During the installation my VS was open. Prior to installation of the update, I was asked to close VS but I neglected. That might have been the reason for the error although not sure about the exact cause.
After installation, the installer prompted me to restart the computer and the error was gone after I restarted my computer.
I am encountering similar problem with VS2015 update 3. Once this start happening I can't build application and can't start another instance Visual studio as it gives out of memory exception.
After looking through task lists I found out that there are many instance of conhost.exe and MSBuild.exe processes. So as temporary fix I kill all instances and try again building it is not perfect solution but works some times.
You can try run following batch commands.
Taskkill /IM MSBuild.exe /F
Taskkill /IM conhost.exe /F
Changed the time zone of system (Start>Settings>Time&language>Date&time>Time zone) to automatic, and then restarted the VS2019(on this I was facing the issue) in administrator mode. Issue got resolved for me.
I had the "A task was cancelled" error, not after updating Visual Studio or changing the time clock, but when enabled editing to a file from my version control software.
Likewise, reloading Visual Studio fixed the error.