5 references to GetOutputFilePath
Microsoft.CodeAnalysis (2)
CommandLine\CommonCompiler.cs (2)
865
sb.Builder.Append(Arguments.
GetOutputFilePath
(Arguments.OutputFileName));
1244
var finalPeFilePath = Arguments.
GetOutputFilePath
(outputName);
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (2)
CommandLineTests.cs (2)
3781
Assert.Equal(@"C:\MyFolder\MyBinary.dll", parsedArgs.
GetOutputFilePath
(parsedArgs.OutputFileName));
3798
Assert.Equal(Path.Combine(baseDirectory, "MyBinary.dll"), parsedArgs.
GetOutputFilePath
(parsedArgs.OutputFileName));
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\CommandLineProject.cs (1)
115
var outputFilePath = commandLineArguments.OutputFileName != null ? commandLineArguments.
GetOutputFilePath
(commandLineArguments.OutputFileName) : null;