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)
4060Assert.Null(parsedArgs.DocumentationPath); 4066Assert.Null(parsedArgs.DocumentationPath); 4073Assert.Null(parsedArgs.DocumentationPath); 4078Assert.Null(parsedArgs.DocumentationPath); 4083Assert.Equal(@"C:\MyFolder\MyBinary.xml", parsedArgs.DocumentationPath); 4089Assert.Equal(@"C:\My Folder\MyBinary.xml", parsedArgs.DocumentationPath); 4095Assert.Equal(Path.Combine(baseDirectory, "MyBinary.xml"), parsedArgs.DocumentationPath); 4101Assert.Equal(@"C:\abc\def\MyBinary.xml", parsedArgs.DocumentationPath); 4111Assert.Null(parsedArgs.DocumentationPath); 4119Assert.Null(parsedArgs.DocumentationPath); 4125Assert.Equal(@"\\server\share\file.xml", parsedArgs.DocumentationPath); 4133Assert.Null(parsedArgs.DocumentationPath); 4149Assert.Null(parsedArgs.DocumentationPath); 4376Assert.Equal(@"C:\abc\def\baz\a\b.xml", parsedArgs.DocumentationPath); 4385Assert.Equal(@"C:\abc\def\baz\b.xml", parsedArgs.DocumentationPath);
Microsoft.CodeAnalysis.VisualBasic.CommandLine.UnitTests (26)
CommandLineTests.vb (26)
4076Assert.Null(parsedArgs.DocumentationPath) 4363Assert.Null(parsedArgs.DocumentationPath) 4369Assert.Null(parsedArgs.DocumentationPath) 4377Assert.Null(parsedArgs.DocumentationPath) 4385Assert.Null(parsedArgs.DocumentationPath) 4392Assert.Null(parsedArgs.DocumentationPath) 4399Assert.Null(parsedArgs.DocumentationPath) 4414Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath) 4419Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath) 4424Assert.Null(parsedArgs.DocumentationPath) 4430Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath) 4436Assert.Null(parsedArgs.DocumentationPath) 4442Assert.Equal("C:\MyFolder\MyBinary.xml", parsedArgs.DocumentationPath) 4448Assert.Equal("C:\My Folder\MyBinary.xml", parsedArgs.DocumentationPath) 4454Assert.Equal(Path.Combine(baseDirectory, "MyBinary.xml"), parsedArgs.DocumentationPath) 4460Assert.Equal("C:\abc\def\MyBinary.xml", parsedArgs.DocumentationPath) 4469Assert.Null(parsedArgs.DocumentationPath) 4476Assert.Equal("\\server\share\file.xml", parsedArgs.DocumentationPath) 4488Assert.Equal("C:\abc\def\baz\a\b.xml", parsedArgs.DocumentationPath) 4497Assert.Equal("C:\abc\def\baz\b.xml", parsedArgs.DocumentationPath) 4510Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath) 4515Assert.Null(parsedArgs.DocumentationPath) 4520Assert.Null(parsedArgs.DocumentationPath) 4525Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath) 4530Assert.Equal(Path.Combine(baseDirectory, "a.xml"), parsedArgs.DocumentationPath) 4535Assert.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;