Exemplo n.º 1
0
 public CodeFileTs(string id, string name, ITsHost tsHost)
     : base(id, name)
 {
     this.NodePathService = new TsNodePathService(this);
     this.Model           = new StRoot();
     this.tsHost          = tsHost;
 }
Exemplo n.º 2
0
 public CodeFileEnvironmentHandlerTs(
     IFileSystem fileSystem,
     ICodeFileStorageHandler codeFileStorageHandler,
     ICodeFileCompilationHandler codeFileCompilationHandler,
     IPipelineExecutionInfo pipelineExecutionInfo,
     ILogger logger)
     : base(codeFileStorageHandler, codeFileCompilationHandler)
 {
     this.fileSystem = fileSystem;
     this.tsHost     = new TsHost(30050, 30100, 5000, new TsHostLoggerAdapter(logger));
 }