CompilerResults.cs 558 B

12345678910111213141516171819202122232425
  1. #if NETSTANDARD2_0 || NETSTANDARD2_1 || NETCOREAPP
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Reflection;
  5. using System.Text;
  6. namespace FastReport.Code.CodeDom.Compiler
  7. {
  8. public class CompilerResults
  9. {
  10. public CompilerResults()
  11. {
  12. }
  13. public CompilerResults(Assembly compiledAssembly)
  14. {
  15. CompiledAssembly = compiledAssembly;
  16. }
  17. public List<CompilerError> Errors { get; } = new List<CompilerError>();
  18. public Assembly CompiledAssembly { get; }
  19. }
  20. }
  21. #endif