This is an automated email from the ASF dual-hosted git repository. nightowl888 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/lucenenet.git
commit 73b1de17c7c863565248ba9876149118fd859290 Author: Shad Storhaug <[email protected]> AuthorDate: Tue Oct 26 02:42:51 2021 +0700 BUG: build/build.ps1: Fixed special case to only test on .NET Framework 4.8 and not on .NET Framework 4.6.1 (which is just to test .NET Standard 2.0 support) --- build/build.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/build.ps1 b/build/build.ps1 index c2deba3..75349f9 100644 --- a/build/build.ps1 +++ b/build/build.ps1 @@ -293,8 +293,8 @@ task Test -depends InstallSDK, UpdateLocalSDKVersion, Restore -description "This continue } - # Special case - OpenNLP.NET only supports .NET Framework - if ($testName.Contains("Tests.Analysis.OpenNLP") -and (!$framework.StartsWith("net4"))) { + # Special case - OpenNLP.NET is only tested on .NET Framework 4.8 + if ($testName.Contains("Tests.Analysis.OpenNLP") -and (!$framework.StartsWith("net48"))) { $totalProjects-- $remainingProjects-- continue
