#if NETSTANDARD2_0 || NETSTANDARD2_1 || NETCOREAPP using System; using System.Collections.Generic; using System.Reflection; using System.Text; namespace FastReport.Code.CodeDom.Compiler { public class CompilerResults { public CompilerResults() { } public CompilerResults(Assembly compiledAssembly) { CompiledAssembly = compiledAssembly; } public List Errors { get; } = new List(); public Assembly CompiledAssembly { get; } } } #endif