2 writes to DocumentationPath
Microsoft.CodeAnalysis.CSharp (1)
CommandLine\CSharpCommandLineParser.cs (1)
1595DocumentationPath = documentationPath,
Microsoft.CodeAnalysis.VisualBasic (1)
CommandLine\VisualBasicCommandLineParser.vb (1)
1509.DocumentationPath = documentationPath,
17 references to DocumentationPath
Microsoft.CodeAnalysis (1)
CommandLine\CommonCompiler.cs (1)
1246var finalXmlFilePath = Arguments.DocumentationPath;
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (15)
CommandLineTests.cs (15)
4071Assert.Null(parsedArgs.DocumentationPath); 4077Assert.Null(parsedArgs.DocumentationPath); 4084Assert.Null(parsedArgs.DocumentationPath); 4089Assert.Null(parsedArgs.DocumentationPath); 4094Assert.Equal(@"C:\MyFolder\MyBinary.xml", parsedArgs.DocumentationPath); 4100Assert.Equal(@"C:\My Folder\MyBinary.xml", parsedArgs.DocumentationPath); 4106Assert.Equal(Path.Combine(baseDirectory, "MyBinary.xml"), parsedArgs.DocumentationPath); 4112Assert.Equal(@"C:\abc\def\MyBinary.xml", parsedArgs.DocumentationPath); 4122Assert.Null(parsedArgs.DocumentationPath); 4130Assert.Null(parsedArgs.DocumentationPath); 4136Assert.Equal(@"\\server\share\file.xml", parsedArgs.DocumentationPath); 4144Assert.Null(parsedArgs.DocumentationPath); 4160Assert.Null(parsedArgs.DocumentationPath); 4387Assert.Equal(@"C:\abc\def\baz\a\b.xml", parsedArgs.DocumentationPath); 4396Assert.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;