forked from elastic/elasticsearch-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathElasticsearch.Net.csproj
124 lines (124 loc) · 6.12 KB
/
Elasticsearch.Net.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{E97CCF40-0BA6-43FE-9F2D-58D454134088}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Elasticsearch.Net</RootNamespace>
<AssemblyName>Elasticsearch.Net</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<UseVSHostingProcess>false</UseVSHostingProcess>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Release\Elasticsearch.Net.XML</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\..\build\keys\keypair.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Connection\IRequestConfiguration.cs" />
<Compile Include="Connection\IRequestConnectionConfiguration.cs" />
<Compile Include="Connection\TransportRequestState.cs" />
<Compile Include="Domain\BaseRequestParameters.cs" />
<Compile Include="Domain\IElasticsearchResponse.cs" />
<Compile Include="Domain\IHideObjectMembers.cs" />
<Compile Include="Domain\IRequestParameters.cs" />
<Compile Include="Domain\VoidResponse.cs" />
<Compile Include="Providers\DateTimeProvider.cs" />
<Compile Include="Connection\HttpConnection.cs" />
<Compile Include="Connection\ElasticsearchServerException.cs" />
<Compile Include="Exceptions\ConnectionException.cs" />
<Compile Include="Connection\ConnectionConfiguration.cs" />
<Compile Include="ConnectionPool\EndpointState.cs" />
<Compile Include="Connection\ConnectionState.cs" />
<Compile Include="ConnectionPool\IConnectionPool.cs" />
<Compile Include="Providers\IDateTimeProvider.cs" />
<Compile Include="ConnectionPool\SingleNodeConnectionPool.cs" />
<Compile Include="Providers\Sniffer.cs" />
<Compile Include="ConnectionPool\SniffingConnectionPool.cs" />
<Compile Include="ConnectionPool\StaticConnectionPool.cs" />
<Compile Include="Connection\Transport.cs" />
<Compile Include="Connection\ITransport.cs" />
<Compile Include="Domain\ElasticsearchResponse.cs" />
<Compile Include="Connection\ElasticsearchResponseTracer.cs" />
<Compile Include="Connection\IConnection.cs" />
<Compile Include="Connection\IConnectionConfigurationValues.cs" />
<Compile Include="Connection\IConnectionConfiguration.cs" />
<Compile Include="Connection\InMemoryConnection.cs" />
<Compile Include="ElasticsearchClient.Generated.cs" />
<Compile Include="Domain\DynamicDictionary.cs" />
<Compile Include="Domain\ElasticsearchDynamicValue.cs" />
<Compile Include="Exceptions\MaxRetryException.cs" />
<Compile Include="Extensions\DateExtensions.cs" />
<Compile Include="Extensions\Extensions.cs" />
<Compile Include="Extensions\NameValueCollectionExtensions.cs" />
<Compile Include="Extensions\StringExtensions.cs" />
<Compile Include="Extensions\TypeExtensions.cs" />
<Compile Include="ElasticsearchClient.cs" />
<Compile Include="IElasticsearchClient.Generated.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Domain\Enums.Generated.cs" />
<Compile Include="Domain\FluentRequestParameters.cs" />
<Compile Include="Domain\RequestParameters.Generated.cs" />
<Compile Include="Properties\InternalsVisibleTo.cs" />
<Compile Include="Purify\IPurify.cs" />
<Compile Include="Purify\PurifierDotNet.cs" />
<Compile Include="Purify\PurifierMono.cs" />
<Compile Include="Purify\Purify.cs" />
<Compile Include="Purify\UriInfo.cs" />
<Compile Include="Serialization\IStringifier.cs" />
<Compile Include="Serialization\ElasticsearchDefaultSerializer.cs" />
<Compile Include="Serialization\IElasticsearchSerializer.cs" />
<Compile Include="Serialization\SerializationFormatting.cs" />
<Compile Include="Serialization\SimpleJson.cs" />
<Compile Include="Serialization\Stringifier.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PreBuildEvent Condition=" '$(OS)' != 'Unix' ">IF NOT EXIST "$(SolutionDir)..\build\keys\keypair.snk" (CD "$(SolutionDir).." && "build.bat" CreateKeysIfAbsent && CD %25~dp0)
</PreBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>