build/build.ps1: Fixed typos
Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/6f8f672b Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/6f8f672b Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/6f8f672b Branch: refs/heads/master Commit: 6f8f672b2f77a9970f20519ba9bb09c688c25040 Parents: 399b164 Author: Shad Storhaug <[email protected]> Authored: Mon Sep 11 15:23:09 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Mon Sep 11 15:23:09 2017 +0700 ---------------------------------------------------------------------- build/build.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/6f8f672b/build/build.ps1 ---------------------------------------------------------------------- diff --git a/build/build.ps1 b/build/build.ps1 index 77e6dc5..d1df038 100644 --- a/build/build.ps1 +++ b/build/build.ps1 @@ -129,7 +129,7 @@ task Init -depends InstallSDK -description "This task makes sure the build envir task Restore -description "This task restores the dependencies" { Exec { - &dotnet restore $solutionFile --no-dependencies /p:TestFrameworks=true + & dotnet.exe restore $solutionFile --no-dependencies /p:TestFrameworks=true } } @@ -162,7 +162,7 @@ task Compile -depends Clean, Init, Restore -description "This task compiles the Write-Host "TestFrameworks set to: $testFrameworks" -ForegroundColor Green Exec { - &dotnet msbuild $solutionFile /t:Build ` + & dotnet.exe msbuild $solutionFile /t:Build ` /p:Configuration=$configuration ` /p:AssemblyVersion=$assemblyVersion ` /p:InformationalVersion=$pv `
