build/build.ps1: Added .NET Core 2.0 as one of the test frameworks
Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/d5233f48 Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/d5233f48 Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/d5233f48 Branch: refs/heads/master Commit: d5233f483d546b191b631000c937465d64253c14 Parents: 3a959d5 Author: Shad Storhaug <[email protected]> Authored: Sat Sep 2 00:35:43 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Sat Sep 2 00:35:43 2017 +0700 ---------------------------------------------------------------------- build/build.ps1 | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/d5233f48/build/build.ps1 ---------------------------------------------------------------------- diff --git a/build/build.ps1 b/build/build.ps1 index 961ad0d..6f530e6 100644 --- a/build/build.ps1 +++ b/build/build.ps1 @@ -45,7 +45,7 @@ properties { [string]$product_name = "Lucene.Net" #test paramters - [string]$frameworks_to_test = "netcoreapp1.0,net451" + [string]$frameworks_to_test = "netcoreapp2.0,netcoreapp1.0,net451" [string]$where = "" } @@ -144,9 +144,7 @@ task Compile -depends Clean, Init, Restore -description "This task compiles the /p:Product=$product_name ` /p:Company=$company_name ` /p:Copyright=$copyright ` - /p:TestFrameworks=true - - # workaround for parsing issue: https://github.com/Microsoft/msbuild/issues/471#issuecomment-181963350 + /p:TestFrameworks=true # workaround for parsing issue: https://github.com/Microsoft/msbuild/issues/471#issuecomment-181963350 } $success = $true
