1 write to DocumentationPath
Microsoft.CodeAnalysis.VisualBasic (1)
CommandLine\VisualBasicCommandLineParser.vb (1)
1490.DocumentationPath = documentationPath,
28 references to DocumentationPath
Microsoft.CodeAnalysis (1)
CommandLine\CommonCompiler.cs (1)
1246var finalXmlFilePath = Arguments.DocumentationPath;
Microsoft.CodeAnalysis.VisualBasic.CommandLine.UnitTests (26)
CommandLineTests.vb (26)
4090Assert.Null(parsedArgs.DocumentationPath) 4377Assert.Null(parsedArgs.DocumentationPath) 4383Assert.Null(parsedArgs.DocumentationPath) 4391Assert.Null(parsedArgs.DocumentationPath) 4399Assert.Null(parsedArgs.DocumentationPath) 4406Assert.Null(parsedArgs.DocumentationPath) 4413Assert.Null(parsedArgs.DocumentationPath) 4428Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath) 4433Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath) 4438Assert.Null(parsedArgs.DocumentationPath) 4444Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath) 4450Assert.Null(parsedArgs.DocumentationPath) 4456Assert.Equal("C:\MyFolder\MyBinary.xml", parsedArgs.DocumentationPath) 4462Assert.Equal("C:\My Folder\MyBinary.xml", parsedArgs.DocumentationPath) 4468Assert.Equal(Path.Combine(baseDirectory, "MyBinary.xml"), parsedArgs.DocumentationPath) 4474Assert.Equal("C:\abc\def\MyBinary.xml", parsedArgs.DocumentationPath) 4483Assert.Null(parsedArgs.DocumentationPath) 4490Assert.Equal("\\server\share\file.xml", parsedArgs.DocumentationPath) 4502Assert.Equal("C:\abc\def\baz\a\b.xml", parsedArgs.DocumentationPath) 4511Assert.Equal("C:\abc\def\baz\b.xml", parsedArgs.DocumentationPath) 4524Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath) 4529Assert.Null(parsedArgs.DocumentationPath) 4534Assert.Null(parsedArgs.DocumentationPath) 4539Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath) 4544Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath) 4549Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath)
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\ProjectSystem\ProjectSystemProjectOptionsProcessor.cs (1)
205var documentationMode = _commandLineArgumentsForCommandLine.DocumentationPath != null ? DocumentationMode.Diagnose : DocumentationMode.Parse;