2 instantiations of CompilerInfo
System.CodeDom (2)
System\CodeDom\Compiler\CodeDomProvider.cs (2)
23AddCompilerInfo(new CompilerInfo(new CompilerParameters() { WarningLevel = 4 }, typeof(CSharpCodeProvider).FullName) 30AddCompilerInfo(new CompilerInfo(new CompilerParameters() { WarningLevel = 4 }, typeof(VBCodeProvider).FullName)
21 references to CompilerInfo
PresentationBuildTasks (2)
MS\Internal\MarkupCompiler\MarkupCompiler.cs (2)
319private CompilerInfo CompilerInfo 3490private CompilerInfo _ci = null;
System (1)
src\libraries\shims\System\ref\System.cs (1)
118[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.CodeDom.Compiler.CompilerInfo))]
System.CodeDom (18)
System\CodeDom\Compiler\CodeDomProvider.cs (17)
16private static readonly Dictionary<string, CompilerInfo> s_compilerLanguages = new Dictionary<string, CompilerInfo>(StringComparer.OrdinalIgnoreCase); 17private static readonly Dictionary<string, CompilerInfo> s_compilerExtensions = new Dictionary<string, CompilerInfo>(StringComparer.OrdinalIgnoreCase); 18private static readonly List<CompilerInfo> s_allCompilerInfo = new List<CompilerInfo>(); 37private static void AddCompilerInfo(CompilerInfo compilerInfo) 55CompilerInfo compilerInfo = GetCompilerInfo(language); 61CompilerInfo compilerInfo = GetCompilerInfo(language); 67CompilerInfo compilerInfo = GetCompilerInfoForExtensionNoThrow(extension); 79public static CompilerInfo GetCompilerInfo(string language) 81CompilerInfo compilerInfo = GetCompilerInfoForLanguageNoThrow(language); 89private static CompilerInfo GetCompilerInfoForLanguageNoThrow(string language) 96CompilerInfo value; 101private static CompilerInfo GetCompilerInfoForExtensionNoThrow(string extension) 108CompilerInfo value; 113public static CompilerInfo[] GetAllCompilerInfo() => s_allCompilerInfo.ToArray();
System\CodeDom\Compiler\CompilerInfo.cs (1)
94o is CompilerInfo other &&