CompilerParameters.cs 496 B

1234567891011121314151617
  1. #if NETSTANDARD2_0 || NETSTANDARD2_1 || NETCOREAPP
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Collections.Specialized;
  5. using System.Text;
  6. namespace FastReport.Code.CodeDom.Compiler
  7. {
  8. public class CompilerParameters
  9. {
  10. public bool GenerateInMemory { get; set; }
  11. public StringCollection ReferencedAssemblies { get; } = new StringCollection();
  12. public TempFileCollection TempFiles { get; set; } = new TempFileCollection("", false);
  13. }
  14. }
  15. #endif