2 writes to _temporaryBatchFile
Microsoft.Build.Utilities.Core (2)
ToolTask.cs (2)
1513
_temporaryBatchFile
= FileUtilities.GetTemporaryFile(".cmd");
1520
_temporaryBatchFile
= FileUtilities.GetTemporaryFile(".sh");
10 references to _temporaryBatchFile
Microsoft.Build.Utilities.Core (10)
ToolTask.cs (10)
1526
File.AppendAllText(
_temporaryBatchFile
, "#!/bin/sh\n"); // first line for UNIX is ANSI
1528
File.AppendAllText(
_temporaryBatchFile
, AdjustCommandsForOperatingSystem(commandLineCommands), EncodingUtilities.CurrentSystemOemEncoding);
1530
commandLineCommands = $"\"{
_temporaryBatchFile
}\"";
1542
encoding = EncodingUtilities.BatchFileEncoding(commandLineCommands +
_temporaryBatchFile
, UseUtf8Encoding);
1550
File.AppendAllText(
_temporaryBatchFile
,
1556
File.AppendAllText(
_temporaryBatchFile
, commandLineCommands, encoding);
1559
string batchFileForCommandLine =
_temporaryBatchFile
;
1715
if (
_temporaryBatchFile
!= null && FileSystems.Default.FileExists(
_temporaryBatchFile
))
1717
DeleteTempFile(
_temporaryBatchFile
);