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 B2342200CE1 for ; Thu, 6 Jul 2017 15:07:08 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id B0CFB1664BE; Thu, 6 Jul 2017 13:07:08 +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 F05CA1664BB for ; Thu, 6 Jul 2017 15:07:07 +0200 (CEST) Received: (qmail 32997 invoked by uid 500); 6 Jul 2017 13:07:02 -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 32497 invoked by uid 99); 6 Jul 2017 13:07:01 -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; Thu, 06 Jul 2017 13:07:01 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id D73DAF5508; Thu, 6 Jul 2017 13:06:59 +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: Thu, 06 Jul 2017 13:07:11 -0000 Message-Id: <5d6fa1bb7bf04f4883a9e300f1e382f7@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [14/14] lucenenet git commit: Changed build script to exclude the Demo package because it is not for consumption via NuGet. archived-at: Thu, 06 Jul 2017 13:07:08 -0000 Changed build script to exclude the Demo package because it is not for consumption via NuGet. Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/93f57ed1 Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/93f57ed1 Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/93f57ed1 Branch: refs/heads/master Commit: 93f57ed1762a0de0a0aca737f774407b7f6f78b5 Parents: f0b56fd Author: Shad Storhaug Authored: Thu Jul 6 20:05:19 2017 +0700 Committer: Shad Storhaug Committed: Thu Jul 6 20:05:19 2017 +0700 ---------------------------------------------------------------------- build/build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/93f57ed1/build/build.ps1 ---------------------------------------------------------------------- diff --git a/build/build.ps1 b/build/build.ps1 index efdac20..312ec01 100644 --- a/build/build.ps1 +++ b/build/build.ps1 @@ -132,7 +132,7 @@ task Compile -depends Clean, Init -description "This task compiles the solution" task Pack -depends Compile -description "This task creates the NuGet packages" { try { pushd $base_directory - $packages = Get-ChildItem -Path "project.json" -Recurse | ? { !$_.Directory.Name.Contains(".Test") } + $packages = Get-ChildItem -Path "project.json" -Recurse | ? { !$_.Directory.Name.Contains(".Test") -and !$_.Directory.Name.Contains(".Demo") } popd Pack-Assemblies $packages