2 writes to DocumentationPath
Microsoft.CodeAnalysis.CSharp (1)
CommandLine\CSharpCommandLineParser.cs (1)
1546DocumentationPath = documentationPath,
Microsoft.CodeAnalysis.VisualBasic (1)
CommandLine\VisualBasicCommandLineParser.vb (1)
1471.DocumentationPath = documentationPath,
43 references to DocumentationPath
Microsoft.CodeAnalysis (1)
CommandLine\CommonCompiler.cs (1)
1134var finalXmlFilePath = Arguments.DocumentationPath;
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (15)
CommandLineTests.cs (15)
3879Assert.Null(parsedArgs.DocumentationPath); 3885Assert.Null(parsedArgs.DocumentationPath); 3892Assert.Null(parsedArgs.DocumentationPath); 3897Assert.Null(parsedArgs.DocumentationPath); 3902Assert.Equal(@"C:\MyFolder\MyBinary.xml", parsedArgs.DocumentationPath); 3908Assert.Equal(@"C:\My Folder\MyBinary.xml", parsedArgs.DocumentationPath); 3914Assert.Equal(Path.Combine(baseDirectory, "MyBinary.xml"), parsedArgs.DocumentationPath); 3920Assert.Equal(@"C:\abc\def\MyBinary.xml", parsedArgs.DocumentationPath); 3930Assert.Null(parsedArgs.DocumentationPath); 3938Assert.Null(parsedArgs.DocumentationPath); 3944Assert.Equal(@"\\server\share\file.xml", parsedArgs.DocumentationPath); 3952Assert.Null(parsedArgs.DocumentationPath); 3968Assert.Null(parsedArgs.DocumentationPath); 4195Assert.Equal(@"C:\abc\def\baz\a\b.xml", parsedArgs.DocumentationPath); 4204Assert.Equal(@"C:\abc\def\baz\b.xml", parsedArgs.DocumentationPath);
Microsoft.CodeAnalysis.VisualBasic.CommandLine.UnitTests (26)
CommandLineTests.vb (26)
4083Assert.Null(parsedArgs.DocumentationPath) 4370Assert.Null(parsedArgs.DocumentationPath) 4376Assert.Null(parsedArgs.DocumentationPath) 4384Assert.Null(parsedArgs.DocumentationPath) 4392Assert.Null(parsedArgs.DocumentationPath) 4399Assert.Null(parsedArgs.DocumentationPath) 4406Assert.Null(parsedArgs.DocumentationPath) 4421Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath) 4426Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath) 4431Assert.Null(parsedArgs.DocumentationPath) 4437Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath) 4443Assert.Null(parsedArgs.DocumentationPath) 4449Assert.Equal("C:\MyFolder\MyBinary.xml", parsedArgs.DocumentationPath) 4455Assert.Equal("C:\My Folder\MyBinary.xml", parsedArgs.DocumentationPath) 4461Assert.Equal(Path.Combine(baseDirectory, "MyBinary.xml"), parsedArgs.DocumentationPath) 4467Assert.Equal("C:\abc\def\MyBinary.xml", parsedArgs.DocumentationPath) 4476Assert.Null(parsedArgs.DocumentationPath) 4483Assert.Equal("\\server\share\file.xml", parsedArgs.DocumentationPath) 4495Assert.Equal("C:\abc\def\baz\a\b.xml", parsedArgs.DocumentationPath) 4504Assert.Equal("C:\abc\def\baz\b.xml", parsedArgs.DocumentationPath) 4517Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath) 4522Assert.Null(parsedArgs.DocumentationPath) 4527Assert.Null(parsedArgs.DocumentationPath) 4532Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath) 4537Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath) 4542Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath)
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\ProjectSystem\ProjectSystemProjectOptionsProcessor.cs (1)
193var documentationMode = _commandLineArgumentsForCommandLine.DocumentationPath != null ? DocumentationMode.Diagnose : DocumentationMode.Parse;