23 references to Arguments
csc (1)
src\roslyn\src\Compilers\Shared\Csc.cs (1)
28
return ConsoleUtil.RunWithUtf8Output(compiler.
Arguments
.Utf8Output, textWriter, tw => compiler.Run(tw));
Microsoft.CodeAnalysis.CSharp (18)
CommandLine\CSharpCompiler.cs (18)
31
_diagnosticFormatter = new CommandLineDiagnosticFormatter(buildPaths.WorkingDirectory,
Arguments
.PrintFullPaths,
Arguments
.ShouldIncludeErrorEndLocation);
45
var parseOptions =
Arguments
.ParseOptions;
53
var sourceFiles =
Arguments
.SourceFiles;
58
if (
Arguments
.CompilationOptions.ConcurrentBuild)
110
Arguments
.PrintFullPaths ? normalizedFilePath : _diagnosticFormatter.RelativizeNormalizedPath(normalizedFilePath)));
116
if (
Arguments
.TouchedFilesPath != null)
126
var appConfigPath = this.
Arguments
.AppConfigPath;
147
var xmlFileResolver = new LoggingXmlFileResolver(
Arguments
.BaseDirectory, touchedFilesLogger);
148
var sourceFileResolver = new LoggingSourceFileResolver(ImmutableArray<string>.Empty,
Arguments
.BaseDirectory,
Arguments
.PathMap, touchedFilesLogger);
161
Arguments
.CompilationName,
164
Arguments
.CompilationOptions
168
.WithStrongNameProvider(
Arguments
.GetStrongNameProvider(loggingFileSystem))
238
if (
Arguments
.OutputFileName is object)
240
return
Arguments
.OutputFileName;
243
Debug.Assert(
Arguments
.CompilationOptions.OutputKind.IsApplication());
341
Arguments
.ResolveAnalyzersFromArguments(LanguageNames.CSharp, diagnostics, messageProvider, AssemblyLoader, compilationOptions, skipAnalyzers, out analyzers, out generators);
Microsoft.CodeAnalysis.CSharp.Scripting (1)
Hosting\CommandLine\Csi.cs (1)
32
CommandLineRunner.GetMetadataReferenceResolver(
Arguments
, loggerOpt, _createFromFileFunc);
VBCSCompiler (3)
src\roslyn\src\Compilers\Server\VBCSCompiler\CSharpCompilerServer.cs (3)
31
_cache = CompilationCache.TryCreate(
Arguments
, _logger);
47
var result = CompilationCacheUtilities.CheckCache(_cache, _logger,
Arguments
, compilation, analyzers, generators, additionalTexts, cancellationToken, out var deterministicKey, out var hashKey);
61
CompilationCacheUtilities.OnCompilationSucceeded(_cache, _logger,
Arguments
, deterministicKey, hashKey);