Repository: lucenenet Updated Branches: refs/heads/api-work 82cd2b990 -> b89ca731f
build\build.ps1: Added missing framework argument from dotnet.exe test command Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/36390e62 Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/36390e62 Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/36390e62 Branch: refs/heads/api-work Commit: 36390e629f50194aab6bfa26abc191b9d943f5b0 Parents: 82cd2b9 Author: Shad Storhaug <[email protected]> Authored: Sun Apr 16 17:53:08 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Sun Apr 16 17:53:08 2017 +0700 ---------------------------------------------------------------------- build/build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/36390e62/build/build.ps1 ---------------------------------------------------------------------- diff --git a/build/build.ps1 b/build/build.ps1 index 08613e5..7baede0 100644 --- a/build/build.ps1 +++ b/build/build.ps1 @@ -124,7 +124,7 @@ task Test -description "This task runs the tests" { Write-Host "Directory: $projectDirectory" -ForegroundColor Green if ($framework.StartsWith("netcore")) { - $testExpression = "dotnet.exe test '$projectDirectory\project.json' --configuration $configuration --no-build" + $testExpression = "dotnet.exe test '$projectDirectory\project.json' --configuration $configuration --framework $framework --no-build" } else { $binaryRoot = "$projectDirectory\bin\$configuration\$framework"
