Skip to content
This repository was archived by the owner on Nov 9, 2018. It is now read-only.

Commit 0e8d3aa

Browse files
committed
Remove k command and use dnx instead
1 parent de4bd3c commit 0e8d3aa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ if ! type dnvm > /dev/null 2>&1; then
3131
source packages/KoreBuild/build/dnvm.sh
3232
fi
3333

34-
if ! type k > /dev/null 2>&1; then
34+
if ! type dnx > /dev/null 2>&1; then
3535
dnvm upgrade
3636
fi
3737

test/Microsoft.Framework.TestHost.Tests/TestHostWrapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ private static Process RunDNX(string projectDirectory, IEnumerable<string> args)
7878
{
7979
// TODO: Mono?
8080

81-
var allArgs = "/c k Microsoft.Framework.TestHost " + string.Join(" ", args.Select(Quote));
81+
var allArgs = "/c dnx . Microsoft.Framework.TestHost " + string.Join(" ", args.Select(Quote));
8282
return Process.Start(new ProcessStartInfo
8383
{
8484
FileName = "cmd",

0 commit comments

Comments
 (0)