3 writes to BinaryLogPath
dotnet-watch (1)
CommandLine\CommandLineOptions.cs (1)
182
BinaryLogPath
= ParseBinaryLogFilePath(binLogPath),
dotnet-watch.Tests (2)
CommandLine\EnvironmentOptionsTests.cs (2)
20
new GlobalOptions() {
BinaryLogPath
= "msbuild.binlog" }));
26
new GlobalOptions() {
BinaryLogPath
= Path.Combine(root, "logs", "test.binlog") }));
2 references to BinaryLogPath
dotnet-watch (2)
CommandLine\EnvironmentOptions.cs (2)
81
=> options.
BinaryLogPath
!= null
82
? $"{Path.Combine(WorkingDirectory, options.
BinaryLogPath
)[..^".binlog".Length]}-dotnet-watch.{operationName}.{Path.GetFileName(projectPath)}.{Interlocked.Increment(ref _uniqueLogId)}.binlog"