From 3f21510747e353b0ec9ee62bf5201e214a9d710b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20M=C3=A5rlind?= Date: Fri, 19 May 2017 14:27:18 +0200 Subject: [PATCH] This commit fixes issue #32 --- run.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.js b/run.js index 3360964a..1003fc07 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, '-r', 'coreclr']; + const args = ['publish', 'server', '-o', '../build', '-c', config]; cp.spawn('dotnet', args, options).on('close', code => { if (code === 0) { resolve();