Fix build paths for new assemblies
Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/c53f7d6a Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/c53f7d6a Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/c53f7d6a Branch: refs/heads/branch_4x Commit: c53f7d6a96f03ea954e295c18670c480fd161ebe Parents: 3f74ffc Author: Paul Irwin <[email protected]> Authored: Wed Nov 6 16:27:57 2013 -0500 Committer: Paul Irwin <[email protected]> Committed: Wed Nov 6 16:27:57 2013 -0500 ---------------------------------------------------------------------- src/contrib/Facet/Contrib.Facet.csproj | 8 ++++---- src/contrib/QueryParsers/Contrib.QueryParsers.csproj | 6 +++--- src/contrib/Sandbox/Contrib.Sandbox.csproj | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/c53f7d6a/src/contrib/Facet/Contrib.Facet.csproj ---------------------------------------------------------------------- diff --git a/src/contrib/Facet/Contrib.Facet.csproj b/src/contrib/Facet/Contrib.Facet.csproj index b65ae1c..aafa9e5 100644 --- a/src/contrib/Facet/Contrib.Facet.csproj +++ b/src/contrib/Facet/Contrib.Facet.csproj @@ -16,16 +16,16 @@ <DebugSymbols>true</DebugSymbols> <DebugType>full</DebugType> <Optimize>false</Optimize> - <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG;TRACE</DefineConstants> + <OutputPath>..\..\..\build\bin\contrib\Facet\Debug\NET40\</OutputPath> + <DefineConstants>TRACE;DEBUG;NET40</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <DebugType>pdbonly</DebugType> <Optimize>true</Optimize> - <OutputPath>bin\Release\</OutputPath> - <DefineConstants>TRACE</DefineConstants> + <OutputPath>..\..\..\build\bin\contrib\Analyzers\Release\NET40\</OutputPath> + <DefineConstants>TRACE;NET40</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> </PropertyGroup> http://git-wip-us.apache.org/repos/asf/lucenenet/blob/c53f7d6a/src/contrib/QueryParsers/Contrib.QueryParsers.csproj ---------------------------------------------------------------------- diff --git a/src/contrib/QueryParsers/Contrib.QueryParsers.csproj b/src/contrib/QueryParsers/Contrib.QueryParsers.csproj index afee635..775df7a 100644 --- a/src/contrib/QueryParsers/Contrib.QueryParsers.csproj +++ b/src/contrib/QueryParsers/Contrib.QueryParsers.csproj @@ -17,15 +17,15 @@ <DebugSymbols>true</DebugSymbols> <DebugType>full</DebugType> <Optimize>false</Optimize> - <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG;TRACE</DefineConstants> + <OutputPath>..\..\..\build\bin\contrib\QueryParsers\Debug\NET40\</OutputPath> + <DefineConstants>TRACE;DEBUG;NET40</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <DebugType>pdbonly</DebugType> <Optimize>true</Optimize> - <OutputPath>bin\Release\</OutputPath> + <OutputPath>..\..\..\build\bin\contrib\QueryParsers\Release\NET40\</OutputPath> <DefineConstants>TRACE</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> http://git-wip-us.apache.org/repos/asf/lucenenet/blob/c53f7d6a/src/contrib/Sandbox/Contrib.Sandbox.csproj ---------------------------------------------------------------------- diff --git a/src/contrib/Sandbox/Contrib.Sandbox.csproj b/src/contrib/Sandbox/Contrib.Sandbox.csproj index 8e6d33a..643f561 100644 --- a/src/contrib/Sandbox/Contrib.Sandbox.csproj +++ b/src/contrib/Sandbox/Contrib.Sandbox.csproj @@ -17,15 +17,15 @@ <DebugSymbols>true</DebugSymbols> <DebugType>full</DebugType> <Optimize>false</Optimize> - <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG;TRACE</DefineConstants> + <OutputPath>..\..\..\build\bin\contrib\Sandbox\Debug\NET40\</OutputPath> + <DefineConstants>TRACE;DEBUG;NET40</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <DebugType>pdbonly</DebugType> <Optimize>true</Optimize> - <OutputPath>bin\Release\</OutputPath> + <OutputPath>..\..\..\build\bin\contrib\Sandbox\Release\NET40\</OutputPath> <DefineConstants>TRACE</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel>
