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)
4091Assert.Null(parsedArgs.DocumentationPath) 4378Assert.Null(parsedArgs.DocumentationPath) 4384Assert.Null(parsedArgs.DocumentationPath) 4392Assert.Null(parsedArgs.DocumentationPath) 4400Assert.Null(parsedArgs.DocumentationPath) 4407Assert.Null(parsedArgs.DocumentationPath) 4414Assert.Null(parsedArgs.DocumentationPath) 4429Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath) 4434Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath) 4439Assert.Null(parsedArgs.DocumentationPath) 4445Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath) 4451Assert.Null(parsedArgs.DocumentationPath) 4457Assert.Equal("C:\MyFolder\MyBinary.xml", parsedArgs.DocumentationPath) 4463Assert.Equal("C:\My Folder\MyBinary.xml", parsedArgs.DocumentationPath) 4469Assert.Equal(Path.Combine(baseDirectory, "MyBinary.xml"), parsedArgs.DocumentationPath) 4475Assert.Equal("C:\abc\def\MyBinary.xml", parsedArgs.DocumentationPath) 4484Assert.Null(parsedArgs.DocumentationPath) 4491Assert.Equal("\\server\share\file.xml", parsedArgs.DocumentationPath) 4503Assert.Equal("C:\abc\def\baz\a\b.xml", parsedArgs.DocumentationPath) 4512Assert.Equal("C:\abc\def\baz\b.xml", parsedArgs.DocumentationPath) 4525Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath) 4530Assert.Null(parsedArgs.DocumentationPath) 4535Assert.Null(parsedArgs.DocumentationPath) 4540Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath) 4545Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath) 4550Assert.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;