1 write to Message
Microsoft.CodeAnalysis (1)
DiagnosticAnalyzer\AnalyzerLoadFailureEventArgs.cs (1)
59
Message
= message;
6 references to Message
CodeStyleConfigFileGenerator (1)
Program.cs (1)
81
=> throw e.Exception ?? new InvalidOperationException(e.
Message
);
GenerateRulesMissingDocumentation (1)
Program.cs (1)
154
analyzerFileReference.AnalyzerLoadFailed += (sender, e) => throw e.Exception ?? new NotSupportedException(e.
Message
);
Microsoft.CodeAnalysis (2)
CommandLine\CommandLineArguments.cs (2)
491
diagnostic = new DiagnosticInfo(messageProvider, messageProvider.WRN_UnableToLoadAnalyzer, analyzerReference.FullPath, e.
Message
);
494
diagnostic = new DiagnosticInfo(messageProvider, messageProvider.WRN_AnalyzerCannotBeCreated, e.TypeName ?? "", analyzerReference.FullPath, e.
Message
);
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Features\Diagnostics\DocumentAnalysisExecutor_Helpers.cs (2)
86
message = string.Format(FeaturesResources.Unable_to_load_Analyzer_assembly_0_colon_1, fullPath, e.
Message
);
91
message = string.Format(FeaturesResources.An_instance_of_analyzer_0_cannot_be_created_from_1_colon_2, e.TypeName, fullPath, e.
Message
);