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