2 instantiations of CompilerInfo
System.CodeDom (2)
System\CodeDom\Compiler\CodeDomProvider.cs (2)
23
AddCompilerInfo(new
CompilerInfo
(new CompilerParameters() { WarningLevel = 4 }, typeof(CSharpCodeProvider).FullName)
30
AddCompilerInfo(new
CompilerInfo
(new CompilerParameters() { WarningLevel = 4 }, typeof(VBCodeProvider).FullName)
21 references to CompilerInfo
PresentationBuildTasks (2)
MS\Internal\MarkupCompiler\MarkupCompiler.cs (2)
315
private
CompilerInfo
CompilerInfo
3486
private
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)
16
private static readonly Dictionary<string,
CompilerInfo
> s_compilerLanguages = new Dictionary<string,
CompilerInfo
>(StringComparer.OrdinalIgnoreCase);
17
private static readonly Dictionary<string,
CompilerInfo
> s_compilerExtensions = new Dictionary<string,
CompilerInfo
>(StringComparer.OrdinalIgnoreCase);
18
private static readonly List<
CompilerInfo
> s_allCompilerInfo = new List<
CompilerInfo
>();
37
private static void AddCompilerInfo(
CompilerInfo
compilerInfo)
55
CompilerInfo
compilerInfo = GetCompilerInfo(language);
61
CompilerInfo
compilerInfo = GetCompilerInfo(language);
67
CompilerInfo
compilerInfo = GetCompilerInfoForExtensionNoThrow(extension);
79
public static
CompilerInfo
GetCompilerInfo(string language)
81
CompilerInfo
compilerInfo = GetCompilerInfoForLanguageNoThrow(language);
89
private static
CompilerInfo
GetCompilerInfoForLanguageNoThrow(string language)
96
CompilerInfo
value;
101
private static
CompilerInfo
GetCompilerInfoForExtensionNoThrow(string extension)
108
CompilerInfo
value;
113
public static
CompilerInfo
[] GetAllCompilerInfo() => s_allCompilerInfo.ToArray();
System\CodeDom\Compiler\CompilerInfo.cs (1)
94
o is
CompilerInfo
other &&