Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't load project after pulling: "Expected 'ENCODING' but found 'utf-8'."

Tags:

After pulling the project (WPF application) from git,

I get this error:

enter image description here

What could be causing it? It worked fine before pulling it (someone else commited on the project).

like image 704
Tool Avatar asked Apr 13 '13 16:04

Tool


2 Answers

It appears there were some unclosed tags in my .csproject file.

Strangely though, the error above was reported instead.

like image 143
Tool Avatar answered Nov 06 '22 00:11

Tool


Look at your .csproj extension file search for: <<<<<< or ====== or >>>>>>>> and remove it.

also check your web.config file for those symbols and remove them too if they exist there.

like image 37
danigitman Avatar answered Nov 06 '22 01:11

danigitman