We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ace35d commit f64752fCopy full SHA for f64752f
SymlinkCreator/Properties/AssemblyInfo.cs
@@ -52,5 +52,5 @@
52
// by using the '*' as shown below:
53
// [assembly: AssemblyVersion("1.0.*")]
54
55
-[assembly: AssemblyVersion("1.1.0")]
56
-[assembly: AssemblyFileVersion("1.1.0")]
+[assembly: AssemblyVersion("1.2.0")]
+[assembly: AssemblyFileVersion("1.2.0")]
SymlinkCreator/core/SymlinkAgent.cs
@@ -56,6 +56,10 @@ public void CreateSymlinks()
DateTime.Now.Ticks.ToString() + ".bat";
57
ScriptExecutor scriptExecutor = new ScriptExecutor(scriptFileName);
58
59
+ // set code page to UTF-8 to support unicode file paths
60
+ scriptExecutor.WriteLine("chcp 65001 >NUL");
61
+
62
+ // go to destination path
63
scriptExecutor.WriteLine(_splittedDestinationPath[0]);
64
scriptExecutor.WriteLine("cd \"" + _destinationPath + "\"");
65
0 commit comments