1 write to Path
Microsoft.CodeAnalysis (1)
CommandLine\ErrorLogOptions.cs (1)
36
Path
= path;
12 references to Path
Microsoft.CodeAnalysis (4)
CommandLine\CommandLineArguments.cs (1)
141
public string? ErrorLogPath => ErrorLogOptions?.
Path
;
CommandLine\CommonCompiler.cs (3)
720
Debug.Assert(Arguments.ErrorLogOptions?.
Path
!= null);
723
var errorLog = OpenFile(Arguments.ErrorLogOptions.
Path
,
773
if (Arguments.ErrorLogOptions?.
Path
!= null)
Microsoft.CodeAnalysis.VisualBasic.CommandLine.UnitTests (8)
CommandLineTests.vb (8)
4571
Assert.Equal("C:\MyFolder\MyBinary.xml", parsedArgs.ErrorLogOptions.
Path
)
4577
Assert.Equal("C:\My Folder\MyBinary.xml", parsedArgs.ErrorLogOptions.
Path
)
4588
Assert.Equal(Path.Combine(baseDirectory, "MyBinary.xml"), parsedArgs.ErrorLogOptions.
Path
)
4593
Assert.Equal("C:\abc\def\MyBinary.xml", parsedArgs.ErrorLogOptions.
Path
)
4610
Assert.Equal("\\server\share\file.xml", parsedArgs.ErrorLogOptions.
Path
)
4616
Assert.Equal("C:\MyFolder\MyBinary.xml", parsedArgs.ErrorLogOptions.
Path
)
4662
Assert.Equal("C:\abc\def\baz\a\b.xml", parsedArgs.ErrorLogOptions.
Path
)
4671
Assert.Equal("C:\abc\def\baz\b.xml", parsedArgs.ErrorLogOptions.
Path
)