up vote 1 down vote favorite
share [g+] share [fb]

The problem: I edit a .vcproj file, save it as UTF-8 (and specify that in the xml header), and when I open it in VS, the next time it saves it the encoding reverts back to CP-1255/1252/1251 (depending on the Localized Settings on the machine).

This has become a problem in our R&D, since whenever someone commits a .vcproj file the encoding changes according to their machine's configuration. How can I configure VS to just use UTF-8 and stop this back and forth ANSI encoding dance?

link|improve this question

74% accept rate
ok, so more sensible questions is, what is the impact? are the project files are getting changed when loaded therefore people are checking them in when there is no change? or does the re-encoding break the reading of the project for others? or is it really just a problem of more changes than expected and therefore making more noise when reviewing diff's etc? – Simeon Pilgrim Jun 25 '09 at 21:43
The problem is superfluous commits, which translate into superfluous reloading of projects upon update. a lot of wasted time. – gigantt.com Jun 26 '09 at 5:23
feedback

2 Answers

up vote 1 down vote accepted

cheap answer: make all dev pc's have same Localized Settings.

link|improve this answer
some people speak different languages.. not really possible. – gigantt.com Jun 25 '09 at 10:46
feedback

Maybe you should try adding the BOM (http://en.wikipedia.org/wiki/Byte_order_mark) to your files. I know of one program which can do it for you, it's actually just 3 bytes at the beginning of your files. Go into the "Format" menu and try the different UTF-8 options.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.