Error with Microsoft Visual Studio???

\Debug\Hour 05.exe.intermediate.manifest : general error c1010070: Failed to load and parse the manifest. The system cannot find the file specified.


Just downloaded and installed it a few minutes ago, and tried a bit of code I'm working on with a new project of mine and new C++ file and I received the above "error" code. Any idea?

Here's the code:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <iostream>
#include <time.h>

using namespace std;

void sparta()
{
  cout<<"You come into MY city, ";
  Sleep(2000);
  cout<<"THREATEN my people with SLAVERY and DEATH...\n";
  Sleep(4000);
  cout<<"Oh I have chosen my words carefully, Persian.\n\n\n";
  Sleep(5000);
  cout<<"This is blasphemy! This is madness!\n\n\n";
  Sleep(2000);
  cout<<"Madness...\n\n\n\n\t\t\t";
  Sleep(8000);
  cout<<"THIS\n\t\t\t";
  Sleep(1000);
  cout<<"IS\n\t\t\t";
  Sleep(1000);
}

int main()
{
  sparta(); // I'm still working on the project
  cin.get();
}
Mmm...try selecting the "rebuild" or something similar option, it should delete all the intermediate files and rebuild the entire project.
It's like, not saving the files correctly or something. I have no clue why.
You could try checking the directories it is looking in in the project settings...although I have never gotten that error so I couldn't really help much...

You could also try a google search for it to see if you can find any information on it.
there must be some setting in project setting option for menifest file. try searching it.. it might give you a clue.

try creating the project again. and it should be a windows console application.
closed account (z05DSL3A)
Try recreating the project, but don not use a space in the name:
\Debug\Hour 05.exe.intermediate.manifest : general error c1010070: Failed to load and parse the manifest.
That's what I thought it'd be, Grey. However I got on it this morning and it required me to associate the file types (C++ file, C file, etc.) with the compiler so I guess it de-associated itself.
Topic archived. No new replies allowed.