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