-1

When I want to build the project then it is showing the following error, how to resolve from this?

Error 1 Unable to write manifest 'obj\x64\Debug\Speech.exe.manifest'. Unable to generate a temporary class (result=1).
error CS2001: Source file 'C:\Windows\TEMP\gev2gqyi.0.cs' could not be found
error CS2008: No inputs specified

Tufan Chand
  • 692
  • 4
  • 19
  • 36

1 Answers1

0

The "Unable to write manifest" indicates that the system is having trouble actually writing the output file which is going into the temp folder. This can happen if you do not have sufficient privileges to write to the temp folder. Make sure that you have write permission for the C:\Windows\TEMP\ folder.

Bill W
  • 1,428
  • 1
  • 20
  • 29