Files have an invalid value error, this path format is not supported

I am developing software with Visual Studio 2010. After saving and compiling my project, I got this error:

Error 1 Files have an invalid value "c: \ users \ mamma \ documents \ visual studio 2010 \ Projects \ Contact_DDBB \ Contact_DDBB \ OBJ \ x86 \ Debug \ GeneratedInternalc: \ users \ mamma \ documents \ visual studio2010 \ Projects \ Contact_DDBB_ \ Contact_DDBB \ bin \ Debug \ Contact_DDBB.exe ". This path format is not supported. Contact_DDBB

I do not know what a mistake and why it appeared.

What is the nature of this error and how can it be fixed?

+6
visual-studio-2010 wpf
source share
3 answers

You should try to clean your project, such things happen in Visual Studio. You must do this by choosing Build> Clean Solution

Hope it works!

+5
source share

just delete the obj and bin subdirectories in the project folder and recompile the project again. It seems that the file name or sth in these paths is corrupted and cannot be listed in C: \ Windows \ Microsoft.NET \ Framework \ v4.0.30319 \ Microsoft.Common.targets (3597,9)

+16
source share

manually clean and save the following projectname.vbproj.FileListAbsolute.txt file

place the path to the project \ obj \ x86 \ Debug \

effective in all cases such as Build, Rebuild and Clear failed

0
source share

All Articles