CrEaToR VR
CrEaToR VR

Reputation: 9

Having problems running a Visual Basic code in Visual Studio 2019

Visual Studio cannot start debugging because the debug target C:\Users\varad\source\repos\Project3\Project3\bin\Debug\Project3.ex e' is missing. Please build the project and retry, or set in OutputPath and AssemblyName properties appropriately to point at the correct location for the target assembly

The error above is given after starting the program. I am using windows 10. I tried adding Project3.exe file in the debug folder but it is not working.

Upvotes: 0

Views: 1130

Answers (1)

Alex.Li - MSFT
Alex.Li - MSFT

Reputation: 181

  1. Please make sure that output path of project is correct (Project > Properties > Build > Output path).

  2. Go to Build > Configuration Manager, and make sure the project has selected the Build.

  3. Rebuild the project.

Upvotes: 1

Related Questions