1 write to DocumentationPath
Microsoft.CodeAnalysis.VisualBasic (1)
CommandLine\VisualBasicCommandLineParser.vb (1)
1491.DocumentationPath = documentationPath,
43 references to DocumentationPath
Microsoft.CodeAnalysis (1)
CommandLine\CommonCompiler.cs (1)
1246var 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.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)
177var documentationMode = _commandLineArgumentsForCommandLine.DocumentationPath != null ? DocumentationMode.Diagnose : DocumentationMode.Parse;