c++ build - failed to run and parse the manifest

Wut

Well-known member
Joined
Mar 1, 2013
Messages
338
Reaction score
1
Error 3 error c1010070: Failed to load and parse the manifest. The system cannot find the file specified. c:UsersPauldocumentsvisual studio 2010ProjectscpluspucpluspuDebugcpluspu.exe.intermediate.manifest cpluspu
Warning 2 warning MSB5018: Failed to delete the temporary file "C:UsersPaulAppDataLocalTemptmpa864421961d54893b610c52398f1fb50.rsp". The process cannot access the file 'C:UsersPaulAppDataLocalTemptmpa864421961d54893b610c52398f1fb50.rsp' because it is being used by another process. C:program FilesMSBuildMicrosoft.Cppv4.0PlatformsWin32Microsoft.Cpp.Win32.Targets 268 6 cpluspu
Warning 1 warning MSB5018: Failed to delete the temporary file "C:UsersPaulAppDataLocalTemptmpd7133e562b764ac5b6760e7ff3f3348e.rsp". The process cannot access the file 'C:UsersPaulAppDataLocalTemptmpd7133e562b764ac5b6760e7ff3f3348e.rsp' because it is being used by another process. C:program FilesMSBuildMicrosoft.Cppv4.0PlatformsWin32Microsoft.Cpp.Win32.Targets 147 6 cpluspu


What should i do? I get this just after i press f5 after i create new c++ program..

Code:
// cpluspu.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"


int _tmain(int argc, _TCHAR* argv[])
{
	return 0;
}
 
Top