コード例 #1
0
        public Compilation(CompilationTest test)
        {
            _test = test;

            _references = new List<string>();
            _sources = new List<CompilationInput>();
            _resources = new List<CompilationInput>();

            _options = new CompilerOptions();
            _options.Minimize = false;
            _options.InternalTestMode = true;
            _options.Defines = new string[] { };
        }
コード例 #2
0
ファイル: Compilation.cs プロジェクト: gitter-badger/dsharp
        public Compilation(CompilationTest test)
        {
            _test = test;

            _references = new List <string>();
            _sources    = new List <CompilationInput>();
            _resources  = new List <CompilationInput>();

            _options                  = new CompilerOptions();
            _options.Minimize         = false;
            _options.InternalTestMode = true;
            _options.Defines          = new string[] { };
        }