12345678910111213141516171819202122232425 |
- #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<CompilerError> Errors { get; } = new List<CompilerError>();
- public Assembly CompiledAssembly { get; }
- }
- }
- #endif
|