File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 52
52
// by using the '*' as shown below:
53
53
// [assembly: AssemblyVersion("1.0.*")]
54
54
55
- [ assembly: AssemblyVersion ( "1.1 .0" ) ]
56
- [ assembly: AssemblyFileVersion ( "1.1 .0" ) ]
55
+ [ assembly: AssemblyVersion ( "1.2 .0" ) ]
56
+ [ assembly: AssemblyFileVersion ( "1.2 .0" ) ]
Original file line number Diff line number Diff line change @@ -56,6 +56,10 @@ public void CreateSymlinks()
56
56
DateTime . Now . Ticks . ToString ( ) + ".bat" ;
57
57
ScriptExecutor scriptExecutor = new ScriptExecutor ( scriptFileName ) ;
58
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
59
63
scriptExecutor . WriteLine ( _splittedDestinationPath [ 0 ] ) ;
60
64
scriptExecutor . WriteLine ( "cd \" " + _destinationPath + "\" " ) ;
61
65
You can’t perform that action at this time.
0 commit comments