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,
17 references to DocumentationPath
Microsoft.CodeAnalysis (1)
CommandLine\CommonCompiler.cs (1)
1234var finalXmlFilePath = Arguments.DocumentationPath;
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (15)
CommandLineTests.cs (15)
4074Assert.Null(parsedArgs.DocumentationPath); 4080Assert.Null(parsedArgs.DocumentationPath); 4087Assert.Null(parsedArgs.DocumentationPath); 4092Assert.Null(parsedArgs.DocumentationPath); 4097Assert.Equal(@"C:\MyFolder\MyBinary.xml", parsedArgs.DocumentationPath); 4103Assert.Equal(@"C:\My Folder\MyBinary.xml", parsedArgs.DocumentationPath); 4109Assert.Equal(Path.Combine(baseDirectory, "MyBinary.xml"), parsedArgs.DocumentationPath); 4115Assert.Equal(@"C:\abc\def\MyBinary.xml", parsedArgs.DocumentationPath); 4125Assert.Null(parsedArgs.DocumentationPath); 4133Assert.Null(parsedArgs.DocumentationPath); 4139Assert.Equal(@"\\server\share\file.xml", parsedArgs.DocumentationPath); 4147Assert.Null(parsedArgs.DocumentationPath); 4163Assert.Null(parsedArgs.DocumentationPath); 4390Assert.Equal(@"C:\abc\def\baz\a\b.xml", parsedArgs.DocumentationPath); 4399Assert.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;