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