Skip to content

Commit 5984f6d

Browse files
See if %3b does anything?
1 parent 6497aad commit 5984f6d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Xamarin.Android.Build.Tasks/Tests/Xamarin.ProjectTools/Common/Builder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ protected bool BuildInternal (string projectOrSolution, string target, string []
275275

276276
var logger = buildLogFullPath == null
277277
? string.Empty
278-
: string.Format ("/noconsolelogger \"/flp1:LogFile={0};Encoding=UTF-8;Verbosity={1}\"",
278+
: string.Format ("/noconsolelogger \"/flp1:LogFile={0}%3bEncoding=UTF-8%3bVerbosity={1}\"",
279279
buildLogFullPath, Verbosity.ToString ().ToLower ());
280280

281281
var start = DateTime.UtcNow;

src/Xamarin.Android.Build.Tasks/Tests/Xamarin.ProjectTools/Common/DotNetCLI.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ List<string> GetDefaultCommandLineArgs (string verb, string target = null, strin
147147
verb,
148148
$"\"{projectOrSolution}\"",
149149
"/noconsolelogger",
150-
$"/flp1:LogFile=\"{BuildLogFile}\";Encoding=UTF-8;Verbosity={Verbosity}",
150+
$"/flp1:LogFile=\"{BuildLogFile}\"%3bEncoding=UTF-8%3bVerbosity={Verbosity}",
151151
$"/bl:\"{Path.Combine (testDir, $"{binlog}.binlog")}\""
152152
};
153153
if (!string.IsNullOrEmpty (target)) {

0 commit comments

Comments
 (0)