how to change source file encoding in csharp project (visual studio / msbuild machine)?

前端 未结 3 571
深忆病人
深忆病人 2020-11-30 05:33

Is there a way to force VS to use Unicode always, instead of weird ISO-something?

I\'m working on a winapp csproject using Visual Studio 2008 on Vista (Polish locale

3条回答
  •  悲&欢浪女
    2020-11-30 05:58

    Problem: Compiler launched from command line cannot process the source file because of international characters that I’ve just added.

    Solution: Save source file explicitly in UTF-8 encoding to preserve international characters.

    How To:

    • open the problematic file in Visual Studio.
    • on the File menu click “Advanced Save Options“
    • from “Encoding” combo select “Unicode (UTF-8 …“
    • click OK.

    You’re set. Commit to please the build server and rest of the team waiting for green.

提交回复
热议问题