This commit is contained in:
Wojciech Figat
2022-01-14 19:35:46 +01:00
parent 73b7c56ca8
commit d15b0c9548
3 changed files with 4 additions and 6 deletions

View File

@@ -184,7 +184,7 @@ namespace Flax.Deploy
return false;
}
internal static string Verbosity => Configuration.Verbose ? " " : "/verbosity:minimal ";
internal static string Verbosity => Configuration.Verbose ? "" : "/verbosity:minimal";
/// <summary>
/// Runs msbuild.exe with the specified arguments.

View File

@@ -208,7 +208,7 @@ namespace Flax.Build.Projects.VisualStudio
else
fileType = "None";
csProjectFileContent.AppendLine(string.Format(" <{0} Visible=\"false\" Include =\"{1}\" />", fileType, file));
csProjectFileContent.AppendLine(string.Format(" <{0} Visible=\"false\" Include=\"{1}\" />", fileType, file));
}
}