38 references to CompilerResults
Microsoft.Build.Engine.UnitTests (1)
BackEnd\CustomTaskHelper.cs (1)
46CompilerResults results = codegenerator.CompileAssemblyFromSource(compilerParameters, taskContents);
System (1)
src\libraries\shims\System\ref\System.cs (1)
120[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.CodeDom.Compiler.CompilerResults))]
System.CodeDom (36)
Microsoft\CSharp\CSharpCodeGenerator.cs (11)
2888CompilerResults ICodeCompiler.CompileAssemblyFromDom(CompilerParameters options, CodeCompileUnit e) 2902CompilerResults ICodeCompiler.CompileAssemblyFromFile(CompilerParameters options, string fileName) 2916CompilerResults ICodeCompiler.CompileAssemblyFromSource(CompilerParameters options, string source) 2930CompilerResults ICodeCompiler.CompileAssemblyFromSourceBatch(CompilerParameters options, string[] sources) 2944CompilerResults ICodeCompiler.CompileAssemblyFromFileBatch(CompilerParameters options, string[] fileNames) 2966CompilerResults ICodeCompiler.CompileAssemblyFromDomBatch(CompilerParameters options, CodeCompileUnit[] ea) 2980private CompilerResults FromDom(CompilerParameters options, CodeCompileUnit e) 2988private static CompilerResults FromFile(CompilerParameters options, string fileName) 3000private static CompilerResults FromSource(CompilerParameters options, string source) 3007private CompilerResults FromDomBatch(CompilerParameters options, CodeCompileUnit[] ea) 3048private static CompilerResults FromSourceBatch(CompilerParameters options, string[] sources)
Microsoft\CSharp\CSharpCodeGenerator.PlatformNotSupported.cs (1)
12private static CompilerResults FromFileBatch(CompilerParameters options, string[] fileNames)
Microsoft\VisualBasic\VBCodeGenerator.cs (1)
384protected override void ProcessCompilerOutputLine(CompilerResults results, string line)
Microsoft\VisualBasic\VBCodeGenerator.PlatformNotSupported.cs (1)
11protected override CompilerResults FromFileBatch(CompilerParameters options, string[] fileNames)
System\CodeDom\Compiler\CodeCompiler.cs (13)
11CompilerResults ICodeCompiler.CompileAssemblyFromDom(CompilerParameters options, CodeCompileUnit e) 25CompilerResults ICodeCompiler.CompileAssemblyFromFile(CompilerParameters options, string fileName) 39CompilerResults ICodeCompiler.CompileAssemblyFromSource(CompilerParameters options, string source) 53CompilerResults ICodeCompiler.CompileAssemblyFromSourceBatch(CompilerParameters options, string[] sources) 67CompilerResults ICodeCompiler.CompileAssemblyFromFileBatch(CompilerParameters options, string[] fileNames) 88CompilerResults ICodeCompiler.CompileAssemblyFromDomBatch(CompilerParameters options, CodeCompileUnit[] ea) 106protected virtual CompilerResults FromDom(CompilerParameters options, CodeCompileUnit e) 113protected virtual CompilerResults FromFile(CompilerParameters options, string fileName) 124protected virtual CompilerResults FromSource(CompilerParameters options, string source) 131protected virtual CompilerResults FromDomBatch(CompilerParameters options, CodeCompileUnit[] ea) 172protected virtual CompilerResults FromFileBatch(CompilerParameters options, string[] fileNames) 180protected abstract void ProcessCompilerOutputLine(CompilerResults results, string line); 198protected virtual CompilerResults FromSourceBatch(CompilerParameters options, string[] sources)
System\CodeDom\Compiler\CodeDomProvider.cs (3)
130public virtual CompilerResults CompileAssemblyFromDom(CompilerParameters options, params CodeCompileUnit[] compilationUnits) => 133public virtual CompilerResults CompileAssemblyFromFile(CompilerParameters options, params string[] fileNames) => 136public virtual CompilerResults CompileAssemblyFromSource(CompilerParameters options, params string[] sources) =>
System\CodeDom\Compiler\ICodeCompiler.cs (6)
8CompilerResults CompileAssemblyFromDom(CompilerParameters options, CodeCompileUnit compilationUnit); 9CompilerResults CompileAssemblyFromFile(CompilerParameters options, string fileName); 10CompilerResults CompileAssemblyFromSource(CompilerParameters options, string source); 11CompilerResults CompileAssemblyFromDomBatch(CompilerParameters options, CodeCompileUnit[] compilationUnits); 12CompilerResults CompileAssemblyFromFileBatch(CompilerParameters options, string[] fileNames); 13CompilerResults CompileAssemblyFromSourceBatch(CompilerParameters options, string[] sources);