سؤال

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).

هل كانت مفيدة؟

المحلول

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.

نصائح أخرى

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

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

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 !!

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).

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.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top