1 | "use strict";
|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
3 | exports.MonoVmManager = void 0;
|
4 | const builder_util_1 = require("builder-util");
|
5 | const vm_1 = require("./vm");
|
6 | class MonoVmManager extends vm_1.VmManager {
|
7 | constructor() {
|
8 | super();
|
9 | }
|
10 | exec(file, args, options, isLogOutIfDebug = true) {
|
11 | return (0, builder_util_1.exec)("mono", [file].concat(args), {
|
12 | ...options,
|
13 | }, isLogOutIfDebug);
|
14 | }
|
15 | spawn(file, args, options, extraOptions) {
|
16 | return (0, builder_util_1.spawn)("mono", [file].concat(args), options, extraOptions);
|
17 | }
|
18 | }
|
19 | exports.MonoVmManager = MonoVmManager;
|
20 |
|
\ | No newline at end of file |