2 writes to RuleSetPath
Microsoft.CodeAnalysis.CSharp (1)
CommandLine\CSharpCommandLineParser.cs (1)
1544RuleSetPath = ruleSetPath,
Microsoft.CodeAnalysis.VisualBasic (1)
CommandLine\VisualBasicCommandLineParser.vb (1)
1501.RuleSetPath = ruleSetPath,
15 references to RuleSetPath
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (7)
CommandLineTests.cs (7)
2723Assert.Equal(expected: file.Path, actual: parsedArgs.RuleSetPath); 2749Assert.Equal(expected: file.Path, actual: parsedArgs.RuleSetPath); 2758Assert.Null(parsedArgs.RuleSetPath); 2763Assert.Null(parsedArgs.RuleSetPath); 2768Assert.Equal(expected: Path.Combine(TempRoot.Root, "blah"), actual: parsedArgs.RuleSetPath); 2773Assert.Equal(expected: Path.Combine(TempRoot.Root, "blah;blah.ruleset"), actual: parsedArgs.RuleSetPath); 2779Assert.Equal(expected: file.Path, actual: parsedArgs.RuleSetPath);
Microsoft.CodeAnalysis.VisualBasic.CommandLine.UnitTests (7)
CommandLineTests.vb (7)
2833Assert.Equal(expected:=file.Path, actual:=parsedArgs.RuleSetPath) 2858Assert.Equal(expected:=file.Path, actual:=parsedArgs.RuleSetPath) 2866Assert.Null(parsedArgs.RuleSetPath) 2871Assert.Null(parsedArgs.RuleSetPath) 2876Assert.Equal(expected:=Path.Combine(TempRoot.Root, "blah"), actual:=parsedArgs.RuleSetPath) 2881Assert.Equal(expected:=Path.Combine(TempRoot.Root, "blah;blah.ruleset"), actual:=parsedArgs.RuleSetPath) 2887Assert.Equal(expected:=file.Path, actual:=parsedArgs.RuleSetPath)
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\ProjectSystem\ProjectSystemProjectOptionsProcessor.cs (1)
171var effectiveRuleSetPath = ExplicitRuleSetFilePath ?? _commandLineArgumentsForCommandLine.RuleSetPath;