diff --git a/source/VersionHandlerImpl/src/ProjectSettings.cs b/source/VersionHandlerImpl/src/ProjectSettings.cs index cdd0a278..a2c0001a 100644 --- a/source/VersionHandlerImpl/src/ProjectSettings.cs +++ b/source/VersionHandlerImpl/src/ProjectSettings.cs @@ -17,6 +17,7 @@ using System; using System.Collections.Generic; using System.IO; +using System.Text; using System.Xml; using UnityEditor; @@ -820,6 +821,7 @@ private static void Save() { using (var writer = XmlWriter.Create(PROJECT_SETTINGS_FILE, new XmlWriterSettings { + Encoding = new UTF8Encoding(false), Indent = true, IndentChars = " ", NewLineChars = "\n",