We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e15c95 commit 7b195b7Copy full SHA for 7b195b7
source/VersionHandlerImpl/src/ProjectSettings.cs
@@ -17,6 +17,7 @@
17
using System;
18
using System.Collections.Generic;
19
using System.IO;
20
+using System.Text;
21
using System.Xml;
22
using UnityEditor;
23
@@ -820,6 +821,7 @@ private static void Save() {
820
821
using (var writer =
822
XmlWriter.Create(PROJECT_SETTINGS_FILE,
823
new XmlWriterSettings {
824
+ Encoding = new UTF8Encoding(false),
825
Indent = true,
826
IndentChars = " ",
827
NewLineChars = "\n",
0 commit comments