|
| 1 | +T:System.Diagnostics.Process; Analyzers should not inspect or create processes |
| 2 | +T:System.Diagnostics.ProcessStartInfo; Analyzers should not inspect or create processes |
| 3 | +T:System.Environment; Analyzers should not read their settings directly from environment variables |
| 4 | +P:System.Globalization.CultureInfo.CurrentCulture; Analyzers should use the locale given by the compiler command line arguments, not the CurrentCulture |
| 5 | +P:System.Globalization.CultureInfo.CurrentUICulture; Analyzers should use the locale given by the compiler command line arguments, not the CurrentUICulture |
1 | 6 | T:System.IO.File; Do not do file IO in analyzers |
2 | 7 | T:System.IO.Directory; Do not do file IO in analyzers |
3 | 8 | M:System.IO.Path.GetTempPath; Do not do file IO in analyzers |
4 | | -T:System.Environment; Analyzers should not read their settings directly from environment variables |
5 | 9 | T:System.Random; Analyzers should be deterministic |
6 | 10 | M:System.Reflection.Assembly.Load(System.Byte[]); Analyzers should only load their dependencies via standard runtime mechanisms |
7 | 11 | M:System.Reflection.Assembly.Load(System.String); Analyzers should only load their dependencies via standard runtime mechanisms |
8 | 12 | M:System.Reflection.Assembly.Load(System.Reflection.AssemblyName); Analyzers should only load their dependencies via standard runtime mechanisms |
9 | 13 | M:System.Reflection.Assembly.Load(System.Byte[],System.Byte[]); Analyzers should only load their dependencies via standard runtime mechanisms |
10 | | -P:System.Globalization.CultureInfo.CurrentCulture; Analyzers should use the locale given by the compiler command line arguments, not the CurrentCulture |
11 | | -P:System.Globalization.CultureInfo.CurrentUICulture; Analyzers should use the locale given by the compiler command line arguments, not the CurrentUICulture |
12 | 14 | T:Microsoft.CodeAnalysis.GeneratorInitializationContext; Non-incremental source generators should not be used, implement IIncrementalGenerator instead |
13 | 15 | T:Microsoft.CodeAnalysis.GeneratorExecutionContext; Non-incremental source generators should not be used, implement IIncrementalGenerator instead |
0 commit comments