1 write to OutputFileName
Microsoft.CodeAnalysis.CSharp (1)
CommandLine\CSharpCommandLineParser.cs (1)
1587
OutputFileName
= outputFileName,
21 references to OutputFileName
Microsoft.CodeAnalysis (8)
CommandLine\CommandLineArguments.cs (4)
333
/// The method takes <paramref name="outputFileName"/> rather than using the value of <see cref="
OutputFileName
"/>
335
/// without creating a compilation and finding an entry point. VB does not allow <see cref="
OutputFileName
"/> to
353
/// The method takes <paramref name="outputFileName"/> rather than using the value of <see cref="
OutputFileName
"/>
355
/// without creating a compilation and finding an entry point. VB does not allow <see cref="
OutputFileName
"/> to
CommandLine\CommonCompiler.cs (4)
825
string.IsNullOrWhiteSpace(Arguments.
OutputFileName
);
852
Debug.Assert(!string.IsNullOrWhiteSpace(Arguments.
OutputFileName
));
862
sb.Builder.Append(Arguments.GetOutputFilePath(Arguments.
OutputFileName
));
1836
var filePath = Path.Combine(Arguments.OutputDirectory, Arguments.
OutputFileName
+ ".key");
Microsoft.CodeAnalysis.CSharp (2)
CommandLine\CSharpCompiler.cs (2)
238
if (Arguments.
OutputFileName
is object)
240
return Arguments.
OutputFileName
;
Microsoft.CodeAnalysis.Workspaces (7)
Workspace\CommandLineProject.cs (4)
110
var assemblyName = (commandLineArguments.
OutputFileName
!= null) ?
111
Path.GetFileNameWithoutExtension(commandLineArguments.
OutputFileName
) : "<anonymous>";
115
var outputFilePath = commandLineArguments.
OutputFileName
!= null ? commandLineArguments.GetOutputFilePath(commandLineArguments.
OutputFileName
) : null;
Workspace\ProjectSystem\ProjectSystemProjectOptionsProcessor.cs (3)
191
var fullOutputFilePath = (_commandLineArgumentsForCommandLine.OutputDirectory != null && _commandLineArgumentsForCommandLine.
OutputFileName
!= null)
192
? Path.Combine(_commandLineArgumentsForCommandLine.OutputDirectory, _commandLineArgumentsForCommandLine.
OutputFileName
)
193
: _commandLineArgumentsForCommandLine.
OutputFileName
;
VBCSCompiler (4)
src\roslyn\src\Compilers\Server\VBCSCompiler\CompilationCacheUtilities.cs (4)
42
if (cache is null || arguments.
OutputFileName
is null)
47
var dllName = arguments.
OutputFileName
;
109
if (cache is null || arguments.
OutputFileName
is null || deterministicKey is null || hashKey is null)
114
var dllName = arguments.
OutputFileName
;