Error MSB3541: Files has invalid value

Visual Studio-2010asp.net Mvc-3Visual Studio-2012Appharbor

Visual Studio-2010 Problem Overview


I just deployed an asp.net mvc 3 web application to AppHarbor but it failed:

C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets(3932,5): error MSB3541: Files has invalid value "<<<<<<< HEAD". Illegal characters in path. [D:\temp\q5cmde4m.uk1\input\MyProject\MyProject.csproj]

This happened after I opened the project with Visual Studio 2012 (the application was created with VS2010).

Visual Studio-2010 Solutions


Solution 1 - Visual Studio-2010

Try to search the entire solution for the value and remove it from where it occurs, and then delete the obj folder from your project. When you build again it should work.

The obj folders are hidden in Visual Studio. You can see them with a file explorer.

Solution 2 - Visual Studio-2010

Delete the obj folder within your project and it will fix the issue.

Solution 3 - Visual Studio-2010

though it is very old question but I would like to add an answer here. when you work with multiple developer in visual studio you should git ignore obj folder, .suo,.sln etc which is only holding the visual studio information user based.

refer to this SO question

Solution 4 - Visual Studio-2010

Delete both obj and bin folder it will fix the issue, which in my cas its been done and it was causing when create pull request from remote repository !!

Solution 5 - Visual Studio-2010

Yes, it is about merging conflicts. Usually Visual Studio highlights most of the errors with file paths. However, it does miss some files. All you have to do is REMOVE the "obj" an "bin" folder from your solution.

If you are in Visual Studio, you have to select "Show All/Hidden files" as "obj" folder is hidden, and then delete it.

You can also delete it by going to your directory where your project is stored e.g C:/Users/username/source/repos/project/ (can be different in your case).

Solution 6 - Visual Studio-2010

Ok this might be helpful to someone else.

in my case my .vbproj file and some form files somehow had the last lines of its code truncated, I fixed this by restoring this missing part of the code (around the last 10 lines were missing) from a previous backup of the same project.

The other files got corrupted in a simillar way and were fixed by restoring the missing parts of the files from the backed up ones on a text editor (notepad)

After getting this the project loaded without issue.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionmosquito87View Question on Stackoverflow
Solution 1 - Visual Studio-2010RazvanView Answer on Stackoverflow
Solution 2 - Visual Studio-2010Sohil BhayaniView Answer on Stackoverflow
Solution 3 - Visual Studio-2010Iftikhar Ali AnsariView Answer on Stackoverflow
Solution 4 - Visual Studio-2010Ishwor KhanalView Answer on Stackoverflow
Solution 5 - Visual Studio-2010juniorjblpView Answer on Stackoverflow
Solution 6 - Visual Studio-2010Walter P SteinerView Answer on Stackoverflow