From 6a8adfc997a4d7f239624b992d514a0bf127717f Mon Sep 17 00:00:00 2001 From: Denny Jiang Date: Wed, 15 Jan 2020 16:28:19 +0800 Subject: [PATCH] Revert "This commit fixes issue #32 (#35)" This reverts commit 9affc4f72db563a41f6442563c3dcb4347a623d6. --- run.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.js b/run.js index 1003fc07..3360964a 100644 --- a/run.js +++ b/run.js @@ -91,7 +91,7 @@ tasks.set('build', () => { .then(() => new Promise((resolve, reject) => { const options = { stdio: ['ignore', 'inherit', 'inherit'] }; const config = global.DEBUG ? 'Debug' : 'Release'; - const args = ['publish', 'server', '-o', '../build', '-c', config]; + const args = ['publish', 'server', '-o', 'build', '-c', config, '-r', 'coreclr']; cp.spawn('dotnet', args, options).on('close', code => { if (code === 0) { resolve();