forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Microsoft.Azure.Search.Data.csproj
31 lines (28 loc) · 1.67 KB
/
Microsoft.Azure.Search.Data.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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$([MSBuild]::GetPathOfFileAbove('AzSdk.reference.props'))" />
<Import Project="$([MSBuild]::GetPathOfFileAbove('AzSearch.DataPlane.props'))" />
<PropertyGroup>
<PackageId>Microsoft.Azure.Search.Data</PackageId>
<Description>Use this package if you're developing a .NET application using Azure Search, and you only need to query or update documents in your indexes. If you also need to create or update indexes, synonym maps, or other service-level resources, use the Microsoft.Azure.Search package instead.</Description>
<AssemblyTitle>Microsoft Azure Search Data Library</AssemblyTitle>
<AssemblyName>Microsoft.Azure.Search.Data</AssemblyName>
<Version>9.0.2</Version>
<PackageReleaseNotes>See the Microsoft.Azure.Search package for detailed release notes on the entire Azure Search .NET SDK.</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<!--There are certain projects that needs internals visible for test purpose -->
<SignAssembly>true</SignAssembly>
<DelaySign>true</DelaySign>
<AssemblyOriginatorKeyFile>$(LibraryToolsFolder)\MSSharedLibKey.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\AssemblyInfo.Common.cs" Link="Properties\AssemblyInfo.Common.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Spatial" Version="7.5.3" />
<PackageReference Include="Microsoft.Azure.Search.Common" Version="[9.0.2, 10.0.0)" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Microsoft.Azure.Search.Common\Microsoft.Azure.Search.Common.csproj" />
</ItemGroup>
</Project>