Created
June 3, 2015 02:55
-
-
Save joymon/1060260ba4affd781e68 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private ImmutableArray<Diagnostic> Compile(Compilation compilation) | |
{ | |
string outputDllFilePathName = GetOutputFilePath(); | |
EmitResult result = compilation.Emit(outputDllFilePathName); | |
Console.WriteLine(" Compilation result = {0}", result.Success); | |
return result.Diagnostics; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment