When I try to compile my project from x86 debug mode in Visual Studio 2008. I am getting this error. When I looked at the property group of the project that complained, I se
In my case the built address of my app was set to another computer that was turned off so i turned it on and restart VS and problem solved.
After trying all the other suggestions posted here, I discovered the solution for me was to remove the following section from the .csproj
file:
<ItemGroup>
<Service Include="{808359B6-6B82-4DF5-91FF-3FCBEEBAD811}" />
</ItemGroup>
Apparently this service from the original project (unavailable on local machine) was halting the entire build process, even though it wasn't essential for compilation.