5 references to ERR_CantReadRulesetFile
Microsoft.CodeAnalysis.CSharp (2)
Errors\ErrorFacts.cs (1)
1627
case ErrorCode.
ERR_CantReadRulesetFile
:
Errors\MessageProvider.cs (1)
183
public override int ERR_CantReadRulesetFile => (int)ErrorCode.
ERR_CantReadRulesetFile
;
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (3)
CommandLineTests.cs (3)
2767
Diagnostic(ErrorCode.
ERR_CantReadRulesetFile
).WithArguments(Path.Combine(TempRoot.Root, "blah"), "File not found."));
2772
Diagnostic(ErrorCode.
ERR_CantReadRulesetFile
).WithArguments(Path.Combine(TempRoot.Root, "blah;blah.ruleset"), "File not found."));
2782
Assert.Equal((int)ErrorCode.
ERR_CantReadRulesetFile
, err.Code);