2 writes to DocumentationPath
Microsoft.CodeAnalysis.CSharp (1)
CommandLine\CSharpCommandLineParser.cs (1)
1594DocumentationPath = documentationPath,
Microsoft.CodeAnalysis.VisualBasic (1)
CommandLine\VisualBasicCommandLineParser.vb (1)
1509.DocumentationPath = documentationPath,
18 references to DocumentationPath
Microsoft.CodeAnalysis (1)
CommandLine\CommonCompiler.cs (1)
1247var finalXmlFilePath = Arguments.DocumentationPath;
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (15)
CommandLineTests.cs (15)
4075Assert.Null(parsedArgs.DocumentationPath); 4081Assert.Null(parsedArgs.DocumentationPath); 4088Assert.Null(parsedArgs.DocumentationPath); 4093Assert.Null(parsedArgs.DocumentationPath); 4098Assert.Equal(@"C:\MyFolder\MyBinary.xml", parsedArgs.DocumentationPath); 4104Assert.Equal(@"C:\My Folder\MyBinary.xml", parsedArgs.DocumentationPath); 4110Assert.Equal(Path.Combine(baseDirectory, "MyBinary.xml"), parsedArgs.DocumentationPath); 4116Assert.Equal(@"C:\abc\def\MyBinary.xml", parsedArgs.DocumentationPath); 4126Assert.Null(parsedArgs.DocumentationPath); 4134Assert.Null(parsedArgs.DocumentationPath); 4140Assert.Equal(@"\\server\share\file.xml", parsedArgs.DocumentationPath); 4148Assert.Null(parsedArgs.DocumentationPath); 4164Assert.Null(parsedArgs.DocumentationPath); 4391Assert.Equal(@"C:\abc\def\baz\a\b.xml", parsedArgs.DocumentationPath); 4400Assert.Equal(@"C:\abc\def\baz\b.xml", parsedArgs.DocumentationPath);
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\ProjectSystem\ProjectSystemProjectOptionsProcessor.cs (1)
177var documentationMode = _commandLineArgumentsForCommandLine.DocumentationPath != null ? DocumentationMode.Diagnose : DocumentationMode.Parse;
VBCSCompiler (1)
src\Compilers\Server\VBCSCompiler\CompilationCacheUtilities.cs (1)
113XmlDocPath = arguments.DocumentationPath,