Skip to content

Commit 4b6e46c

Browse files
committed
Added Nest.Mono solution, since mono 3.0.4-5 cannot open vs2012 projects
1 parent 56f9692 commit 4b6e46c

File tree

20 files changed

+422
-252
lines changed

20 files changed

+422
-252
lines changed

build/NESTBuild.proj

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,19 @@
2828
CLSCompliant="true"
2929
Guid="07E5CFA3-CF5F-4D17-874C-8D5CC6FA3E73"
3030

31+
AssemblyVersion="$(Version)"
32+
AssemblyFileVersion="$(Version)"/>
33+
<AssemblyInfo CodeLanguage="CS"
34+
OutputFile="$(SrcDir)\Nest.Connection.Thrift\Properties\AssemblyInfo.cs"
35+
AssemblyTitle="Nest.Connection.Thrift"
36+
AssemblyDescription="Thrift connection support for NEST Elasticsearch client"
37+
AssemblyCompany=""
38+
AssemblyProduct="Nest.Connection.Thrift"
39+
AssemblyCopyright="Martijn Laarman MIT LICENSED"
40+
ComVisible="false"
41+
CLSCompliant="true"
42+
Guid="4d165338-2060-4641-8be6-b7aacbdee52d"
43+
3144
AssemblyVersion="$(Version)"
3245
AssemblyFileVersion="$(Version)"/>
3346

@@ -37,13 +50,16 @@
3750
<Target Name="NuGetPackage" DependsOnTargets="Compile">
3851
<ItemGroup>
3952
<MainBinaries Include="$(SrcDir)\**\Nest\bin\$(Configuration)\**\*.*" />
53+
<ThriftBinaries Include="$(SrcDir)\**\Nest.Connection.Thrift\bin\$(Configuration)\**\*.*" />
4054
</ItemGroup>
4155

4256
<!-- First copy the nuspec template files to the build dir -->
4357
<Copy SourceFiles="..\build\NEST.nuspec" DestinationFolder="$(BuildDir)" />
58+
<Copy SourceFiles="..\build\Nest.Connection.Thrift.nuspec" DestinationFolder="$(BuildDir)" />
4459

4560
<!-- Copy the source files to the package dir -->
4661
<Copy SourceFiles="@(MainBinaries)" DestinationFolder="$(BuildDir)\lib\NET4\" />
62+
<Copy SourceFiles="@(ThriftBinaries)" DestinationFolder="$(BuildDir)\lib\NET4\" />
4763

4864
<!-- Get the version number of the main FV assembly to insert into the nuspec files -->
4965
<GetAssemblyIdentity AssemblyFiles="$(BuildDir)\lib\NET4\Nest.dll">
@@ -60,7 +76,18 @@
6076

6177
<Exec WorkingDirectory="$(BuildDir)"
6278
Command="$(MSBuildProjectDirectory)\nuget.exe pack $(BuildDir)\NEST.nuspec" />
63-
<ItemGroup>
79+
80+
<XmlUpdate
81+
Namespace="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"
82+
Prefix="n"
83+
XmlFileName="$(BuildDir)\Nest.Connection.Thrift.nuspec"
84+
XPath="/n:package/n:metadata/n:version"
85+
Value="%(AsmInfo.Version)" />
86+
87+
<Exec WorkingDirectory="$(BuildDir)"
88+
Command="$(MSBuildProjectDirectory)\nuget.exe pack $(BuildDir)\Nest.Connection.Thrift.nuspec" />
89+
90+
<ItemGroup>
6491
<Packages Include="$(BuildDir)\*.nupkg" />
6592
</ItemGroup>
6693
<Copy SourceFiles="@(Packages)" DestinationFolder="$(BuildDir)\..\" />
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<id>Nest.Connection.Thrift</id>
5+
<version>0.9.0.0</version>
6+
<title>Nest.Connection.Thrift - Thrift support for NEST</title>
7+
<authors>Martijn Laarman and contributors</authors>
8+
<owners>Martijn Laarman</owners>
9+
<iconUrl>http://mpdreamz.github.com/NEST/images/nuget-icon.png</iconUrl>
10+
<licenseUrl>http://mpdreamz.mit-license.org/</licenseUrl>
11+
<projectUrl>https://github.com/Mpdreamz/NEST</projectUrl>
12+
<summary>Thrift connection support for NEST Elasticsearch client</summary>
13+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
14+
<description>Thrift connection support for NEST Elasticsearch client</description>
15+
<dependencies>
16+
<dependency id="NEST" />
17+
<dependency id="Newtonsoft.Json" />
18+
</dependencies>
19+
<tags>elasticsearch elastic search lucene nest</tags>
20+
</metadata>
21+
<files>
22+
<file src="lib\**\Nest.Connection.Thrift.dll" target="lib"/>
23+
</files>
24+
</package>

src/Nest.Connection.Thrift/Nest.Connection.Thrift.csproj

Lines changed: 6 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -2,43 +2,18 @@
22
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5-
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
5+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
66
<ProductVersion>8.0.30703</ProductVersion>
77
<SchemaVersion>2.0</SchemaVersion>
88
<ProjectGuid>{704EF910-C4E7-413E-B21F-296EFE732FCF}</ProjectGuid>
99
<OutputType>Library</OutputType>
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>Nest.Connection.Thrift</RootNamespace>
1212
<AssemblyName>Nest.Connection.Thrift</AssemblyName>
13-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14-
<TargetFrameworkProfile>
15-
</TargetFrameworkProfile>
1613
<FileAlignment>512</FileAlignment>
1714
</PropertyGroup>
18-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
19-
<PlatformTarget>x86</PlatformTarget>
20-
<DebugSymbols>true</DebugSymbols>
21-
<DebugType>full</DebugType>
22-
<Optimize>false</Optimize>
23-
<OutputPath>bin\Debug\</OutputPath>
24-
<DefineConstants>DEBUG;TRACE</DefineConstants>
25-
<ErrorReport>prompt</ErrorReport>
26-
<WarningLevel>4</WarningLevel>
27-
</PropertyGroup>
28-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
29-
<PlatformTarget>x86</PlatformTarget>
30-
<DebugType>pdbonly</DebugType>
31-
<Optimize>true</Optimize>
32-
<OutputPath>bin\Release\</OutputPath>
33-
<DefineConstants>TRACE</DefineConstants>
34-
<ErrorReport>prompt</ErrorReport>
35-
<WarningLevel>4</WarningLevel>
36-
</PropertyGroup>
37-
<PropertyGroup>
38-
<StartupObject />
39-
</PropertyGroup>
4015
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
41-
<DebugSymbols>true</DebugSymbols>
16+
<DebugSymbols>True</DebugSymbols>
4217
<OutputPath>bin\Debug\</OutputPath>
4318
<DefineConstants>DEBUG;TRACE</DefineConstants>
4419
<DebugType>full</DebugType>
@@ -52,11 +27,13 @@
5227
<CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
5328
<CodeAnalysisRuleDirectories>;d:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
5429
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
30+
<WarningLevel>4</WarningLevel>
31+
<Optimize>False</Optimize>
5532
</PropertyGroup>
5633
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
5734
<OutputPath>bin\Release\</OutputPath>
5835
<DefineConstants>TRACE</DefineConstants>
59-
<Optimize>true</Optimize>
36+
<Optimize>True</Optimize>
6037
<DebugType>pdbonly</DebugType>
6138
<PlatformTarget>AnyCPU</PlatformTarget>
6239
<CodeAnalysisLogFile>bin\Release\Nest.Connection.Thrift.dll.CodeAnalysisLog.xml</CodeAnalysisLogFile>
@@ -68,6 +45,7 @@
6845
<CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
6946
<CodeAnalysisRuleDirectories>;d:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
7047
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
48+
<WarningLevel>4</WarningLevel>
7149
</PropertyGroup>
7250
<ItemGroup>
7351
<Reference Include="NetReflector">
Lines changed: 21 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,27 @@
1-
using System.Reflection;
1+
//------------------------------------------------------------------------------
2+
// <auto-generated>
3+
// This code was generated by a tool.
4+
// Runtime Version:4.0.30319.17929
5+
//
6+
// Changes to this file may cause incorrect behavior and will be lost if
7+
// the code is regenerated.
8+
// </auto-generated>
9+
//------------------------------------------------------------------------------
10+
11+
using System;
12+
using System.Reflection;
13+
using System.Resources;
214
using System.Runtime.CompilerServices;
315
using System.Runtime.InteropServices;
416

5-
// General Information about an assembly is controlled through the following
6-
// set of attributes. Change these attribute values to modify the information
7-
// associated with an assembly.
8-
[assembly: AssemblyTitle("Nest.Thrift")]
9-
[assembly: AssemblyDescription("")]
10-
[assembly: AssemblyConfiguration("")]
11-
[assembly: AssemblyCompany("")]
12-
[assembly: AssemblyProduct("Nest.Thrift")]
13-
[assembly: AssemblyCopyright("Copyright © 2012")]
14-
[assembly: AssemblyTrademark("")]
15-
[assembly: AssemblyCulture("")]
16-
17-
// Setting ComVisible to false makes the types in this assembly not visible
18-
// to COM components. If you need to access a type in this assembly from
19-
// COM, set the ComVisible attribute to true on that type.
17+
[assembly: AssemblyTitle("Nest.Connection.Thrift")]
18+
[assembly: AssemblyDescription("Thrift connection support for NEST Elasticsearch client")]
19+
[assembly: AssemblyProduct("Nest.Connection.Thrift")]
20+
[assembly: AssemblyCopyright("Martijn Laarman MIT LICENSED")]
2021
[assembly: ComVisible(false)]
21-
22-
// The following GUID is for the ID of the typelib if this project is exposed to COM
22+
[assembly: CLSCompliant(true)]
2323
[assembly: Guid("4d165338-2060-4641-8be6-b7aacbdee52d")]
24+
[assembly: AssemblyVersion("0.9.9.0")]
25+
[assembly: AssemblyFileVersion("0.9.9.0")]
26+
2427

25-
// Version information for an assembly consists of the following four values:
26-
//
27-
// Major Version
28-
// Minor Version
29-
// Build Number
30-
// Revision
31-
//
32-
// You can specify all the values or you can default the Build and Revision Numbers
33-
// by using the '*' as shown below:
34-
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]

src/Nest.Mono.sln

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 11.00
3+
# Visual Studio 2010
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nest", "Nest\Nest.csproj", "{072BA7DA-7B60-407D-8B6E-95E3186BE70C}"
5+
EndProject
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nest.Connection.Thrift", "Nest.Connection.Thrift\Nest.Connection.Thrift.csproj", "{704EF910-C4E7-413E-B21F-296EFE732FCF}"
7+
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nest.Tests.FactoryDsl", "Nest.Tests.FactoryDsl\Nest.Tests.FactoryDsl.csproj", "{78917074-61E5-4D3D-BB7E-B28CF260B919}"
9+
EndProject
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nest.Tests.Integration", "Nest.Tests.Integration\Nest.Tests.Integration.csproj", "{9E38CD2C-EEFD-4C82-B0CD-D0608C27D64F}"
11+
EndProject
12+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nest.Tests.MockData", "Nest.Tests.MockData\Nest.Tests.MockData.csproj", "{27143A05-5655-447C-ADAF-405E1CF43741}"
13+
EndProject
14+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nest.Tests.Unit", "Nest.Tests.Unit\Nest.Tests.Unit.csproj", "{97408393-78AC-45DF-BE6E-4C219A2E456D}"
15+
EndProject
16+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProtocolLoadTest", "ProtocolLoadTest\ProtocolLoadTest.csproj", "{B9FE4875-0171-40F7-A357-064A93BE09C6}"
17+
EndProject
18+
Global
19+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
20+
Debug|Any CPU = Debug|Any CPU
21+
Release|Any CPU = Release|Any CPU
22+
EndGlobalSection
23+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
24+
{072BA7DA-7B60-407D-8B6E-95E3186BE70C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
25+
{072BA7DA-7B60-407D-8B6E-95E3186BE70C}.Debug|Any CPU.Build.0 = Debug|Any CPU
26+
{072BA7DA-7B60-407D-8B6E-95E3186BE70C}.Release|Any CPU.ActiveCfg = Release|Any CPU
27+
{072BA7DA-7B60-407D-8B6E-95E3186BE70C}.Release|Any CPU.Build.0 = Release|Any CPU
28+
{27143A05-5655-447C-ADAF-405E1CF43741}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
29+
{27143A05-5655-447C-ADAF-405E1CF43741}.Debug|Any CPU.Build.0 = Debug|Any CPU
30+
{27143A05-5655-447C-ADAF-405E1CF43741}.Release|Any CPU.ActiveCfg = Release|Any CPU
31+
{27143A05-5655-447C-ADAF-405E1CF43741}.Release|Any CPU.Build.0 = Release|Any CPU
32+
{704EF910-C4E7-413E-B21F-296EFE732FCF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
33+
{704EF910-C4E7-413E-B21F-296EFE732FCF}.Debug|Any CPU.Build.0 = Debug|Any CPU
34+
{704EF910-C4E7-413E-B21F-296EFE732FCF}.Release|Any CPU.ActiveCfg = Release|Any CPU
35+
{704EF910-C4E7-413E-B21F-296EFE732FCF}.Release|Any CPU.Build.0 = Release|Any CPU
36+
{78917074-61E5-4D3D-BB7E-B28CF260B919}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
37+
{78917074-61E5-4D3D-BB7E-B28CF260B919}.Debug|Any CPU.Build.0 = Debug|Any CPU
38+
{78917074-61E5-4D3D-BB7E-B28CF260B919}.Release|Any CPU.ActiveCfg = Release|Any CPU
39+
{78917074-61E5-4D3D-BB7E-B28CF260B919}.Release|Any CPU.Build.0 = Release|Any CPU
40+
{97408393-78AC-45DF-BE6E-4C219A2E456D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
41+
{97408393-78AC-45DF-BE6E-4C219A2E456D}.Debug|Any CPU.Build.0 = Debug|Any CPU
42+
{97408393-78AC-45DF-BE6E-4C219A2E456D}.Release|Any CPU.ActiveCfg = Release|Any CPU
43+
{97408393-78AC-45DF-BE6E-4C219A2E456D}.Release|Any CPU.Build.0 = Release|Any CPU
44+
{9E38CD2C-EEFD-4C82-B0CD-D0608C27D64F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
45+
{9E38CD2C-EEFD-4C82-B0CD-D0608C27D64F}.Debug|Any CPU.Build.0 = Debug|Any CPU
46+
{9E38CD2C-EEFD-4C82-B0CD-D0608C27D64F}.Release|Any CPU.ActiveCfg = Release|Any CPU
47+
{9E38CD2C-EEFD-4C82-B0CD-D0608C27D64F}.Release|Any CPU.Build.0 = Release|Any CPU
48+
{B9FE4875-0171-40F7-A357-064A93BE09C6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
49+
{B9FE4875-0171-40F7-A357-064A93BE09C6}.Debug|Any CPU.Build.0 = Debug|Any CPU
50+
{B9FE4875-0171-40F7-A357-064A93BE09C6}.Release|Any CPU.ActiveCfg = Release|Any CPU
51+
{B9FE4875-0171-40F7-A357-064A93BE09C6}.Release|Any CPU.Build.0 = Release|Any CPU
52+
EndGlobalSection
53+
GlobalSection(MonoDevelopProperties) = preSolution
54+
StartupItem = ProtocolLoadTest\ProtocolLoadTest.csproj
55+
EndGlobalSection
56+
EndGlobal

src/Nest.Tests.FactoryDsl/Nest.Tests.FactoryDsl.csproj

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,30 +10,26 @@
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>Nest.Tests.FactoryDsl</RootNamespace>
1212
<AssemblyName>Nest.Tests.FactoryDsl</AssemblyName>
13-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1413
<FileAlignment>512</FileAlignment>
1514
</PropertyGroup>
1615
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17-
<DebugSymbols>true</DebugSymbols>
16+
<DebugSymbols>True</DebugSymbols>
1817
<DebugType>full</DebugType>
19-
<Optimize>false</Optimize>
18+
<Optimize>False</Optimize>
2019
<OutputPath>bin\Debug\</OutputPath>
2120
<DefineConstants>DEBUG;TRACE</DefineConstants>
2221
<ErrorReport>prompt</ErrorReport>
2322
<WarningLevel>4</WarningLevel>
2423
</PropertyGroup>
2524
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2625
<DebugType>pdbonly</DebugType>
27-
<Optimize>true</Optimize>
26+
<Optimize>True</Optimize>
2827
<OutputPath>bin\Release\</OutputPath>
2928
<DefineConstants>TRACE</DefineConstants>
3029
<ErrorReport>prompt</ErrorReport>
3130
<WarningLevel>4</WarningLevel>
3231
</PropertyGroup>
3332
<ItemGroup>
34-
<Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
35-
<HintPath>..\..\dep\Newtonsoft.Json.4.5.10\lib\net40\Newtonsoft.Json.dll</HintPath>
36-
</Reference>
3733
<Reference Include="nunit.framework">
3834
<HintPath>..\..\dep\NUnit.2.6.0.12054\lib\nunit.framework.dll</HintPath>
3935
</Reference>
@@ -44,6 +40,9 @@
4440
<Reference Include="Microsoft.CSharp" />
4541
<Reference Include="System.Data" />
4642
<Reference Include="System.Xml" />
43+
<Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed">
44+
<HintPath>..\..\dep\Newtonsoft.Json.4.5.10\lib\net40\Newtonsoft.Json.dll</HintPath>
45+
</Reference>
4746
</ItemGroup>
4847
<ItemGroup>
4948
<Compile Include="DSL\Filter\FilterTests.cs" />

src/Nest.Tests.Integration/Nest.Tests.Integration.csproj

Lines changed: 12 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,20 @@
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>Nest.Tests.Integration</RootNamespace>
1212
<AssemblyName>Nest.Tests.Integration</AssemblyName>
13-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1413
<FileAlignment>512</FileAlignment>
1514
</PropertyGroup>
1615
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17-
<DebugSymbols>true</DebugSymbols>
16+
<DebugSymbols>True</DebugSymbols>
1817
<DebugType>full</DebugType>
19-
<Optimize>false</Optimize>
18+
<Optimize>False</Optimize>
2019
<OutputPath>bin\Debug\</OutputPath>
2120
<DefineConstants>DEBUG;TRACE</DefineConstants>
2221
<ErrorReport>prompt</ErrorReport>
2322
<WarningLevel>4</WarningLevel>
2423
</PropertyGroup>
2524
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2625
<DebugType>pdbonly</DebugType>
27-
<Optimize>true</Optimize>
26+
<Optimize>True</Optimize>
2827
<OutputPath>bin\Release\</OutputPath>
2928
<DefineConstants>TRACE</DefineConstants>
3029
<ErrorReport>prompt</ErrorReport>
@@ -34,20 +33,19 @@
3433
<Reference Include="AutoPoco">
3534
<HintPath>..\..\dep\autopoco\AutoPoco.dll</HintPath>
3635
</Reference>
37-
<Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
38-
<HintPath>..\..\dep\Newtonsoft.Json.4.5.10\lib\net40\Newtonsoft.Json.dll</HintPath>
39-
</Reference>
40-
<Reference Include="nunit.framework, Version=2.6.1.12217, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
41-
<SpecificVersion>False</SpecificVersion>
42-
<HintPath>..\..\dep\NUnit.2.6.1\lib\nunit.framework.dll</HintPath>
43-
</Reference>
4436
<Reference Include="System" />
4537
<Reference Include="System.Core" />
4638
<Reference Include="System.Xml.Linq" />
4739
<Reference Include="System.Data.DataSetExtensions" />
4840
<Reference Include="Microsoft.CSharp" />
4941
<Reference Include="System.Data" />
5042
<Reference Include="System.Xml" />
43+
<Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed">
44+
<HintPath>..\..\dep\Newtonsoft.Json.4.5.10\lib\net40\Newtonsoft.Json.dll</HintPath>
45+
</Reference>
46+
<Reference Include="nunit.framework">
47+
<HintPath>..\..\dep\NUnit.2.6.1\lib\nunit.framework.dll</HintPath>
48+
</Reference>
5149
</ItemGroup>
5250
<ItemGroup>
5351
<Compile Include="BaseElasticSearchTests.cs" />
@@ -112,18 +110,14 @@
112110
</Compile>
113111
</ItemGroup>
114112
<ItemGroup>
115-
<ProjectReference Include="..\HackerNews.Indexer\HackerNews.Indexer.csproj">
116-
<Project>{E39CC264-A7B3-490D-84B2-D3016D86CD87}</Project>
117-
<Name>HackerNews.Indexer</Name>
113+
<ProjectReference Include="..\Nest\Nest.csproj">
114+
<Project>{072BA7DA-7B60-407D-8B6E-95E3186BE70C}</Project>
115+
<Name>Nest</Name>
118116
</ProjectReference>
119117
<ProjectReference Include="..\Nest.Tests.MockData\Nest.Tests.MockData.csproj">
120118
<Project>{27143A05-5655-447C-ADAF-405E1CF43741}</Project>
121119
<Name>Nest.Tests.MockData</Name>
122120
</ProjectReference>
123-
<ProjectReference Include="..\Nest\Nest.csproj">
124-
<Project>{072BA7DA-7B60-407D-8B6E-95E3186BE70C}</Project>
125-
<Name>Nest</Name>
126-
</ProjectReference>
127121
</ItemGroup>
128122
<ItemGroup>
129123
<None Include="app.config">

0 commit comments

Comments
 (0)