CompilationEventArgs.cs 454 B

123456789101112131415161718192021
  1. #if NETSTANDARD2_0 || NETSTANDARD2_1 || NETCOREAPP
  2. using Microsoft.CodeAnalysis;
  3. using System;
  4. using System.IO;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. namespace FastReport.Code.CodeDom.Compiler
  8. {
  9. public class CompilationEventArgs : EventArgs
  10. {
  11. public CompilationEventArgs(Compilation compilation)
  12. {
  13. Compilation = compilation;
  14. }
  15. public Compilation Compilation { get; }
  16. }
  17. }
  18. #endif