Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id E9311200CF9 for ; Sun, 17 Sep 2017 22:18:21 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id DEDA51609D8; Sun, 17 Sep 2017 20:18:21 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 303961609CF for ; Sun, 17 Sep 2017 22:18:21 +0200 (CEST) Received: (qmail 47425 invoked by uid 500); 17 Sep 2017 20:18:20 -0000 Mailing-List: contact commits-help@lucenenet.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: lucene-net-dev@lucenenet.apache.org Delivered-To: mailing list commits@lucenenet.apache.org Received: (qmail 47416 invoked by uid 99); 17 Sep 2017 20:18:20 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 17 Sep 2017 20:18:20 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C95FFF3314; Sun, 17 Sep 2017 20:18:18 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: nightowl888@apache.org To: commits@lucenenet.apache.org Date: Sun, 17 Sep 2017 20:18:18 -0000 Message-Id: <1ba25d2976044b6794009d4f03ced9c6@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/2] lucenenet git commit: build/build.ps1: Installing .NET Core 2.0 SDK during 1.0 testing due to 'illegal characters in path error' that began when not installing both SDKs for that task archived-at: Sun, 17 Sep 2017 20:18:22 -0000 Repository: lucenenet Updated Branches: refs/heads/master 537055a73 -> 06b676ec8 build/build.ps1: Installing .NET Core 2.0 SDK during 1.0 testing due to 'illegal characters in path error' that began when not installing both SDKs for that task Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/9e47928d Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/9e47928d Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/9e47928d Branch: refs/heads/master Commit: 9e47928de4e8e9ad0ec9f050f6c504e05bcbb2c2 Parents: 537055a Author: Shad Storhaug Authored: Mon Sep 18 02:57:53 2017 +0700 Committer: Shad Storhaug Committed: Mon Sep 18 02:57:53 2017 +0700 ---------------------------------------------------------------------- build/build.ps1 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/9e47928d/build/build.ps1 ---------------------------------------------------------------------- diff --git a/build/build.ps1 b/build/build.ps1 index 205aeaa..db954c3 100644 --- a/build/build.ps1 +++ b/build/build.ps1 @@ -88,9 +88,10 @@ task InstallSDK -description "This task makes sure the correct SDK version is in task InstallSDK2IfRequired -description "This task installs the .NET Core 2.x SDK (required for testing under .NET Core 2.0 or .NET Framework)" { Write-Host "##teamcity[progressMessage 'Installing SDK']" - if ($frameworks_to_test.Contains("netcoreapp2.") -or $frameworks_to_test.Contains("net45")) { + # netcoreapp1.0 requires the .NET Core SDK 2.0 or there is an 'illegal characters in path' error + #if ($frameworks_to_test.Contains("netcoreapp2.") -or $frameworks_to_test.Contains("net45")) { Invoke-Task InstallSDK - } + #} } task InstallSDK1IfRequired -description "This task installs the .NET Core 1.x SDK (required for testing under .NET Core 1.0)" {