I am working on asp.net 3.5 project on remote machine. I am accessing it using remote desktop. When I build the project, I get error:
Error 62 Unable to c
If all else fails try a reboot of your computer - only thing that worked for me.
Suprisingly, using
Thread.Sleep(1000);
was the reason the project failed to compile for me with the same error message. Converting to
Task.Delay(1000).Wait();
solved it. Command line application, .NET 4.7.2