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