forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Microsoft.Azure.Search.csproj
24 lines (23 loc) · 1.64 KB
/
Microsoft.Azure.Search.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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$([MSBuild]::GetPathOfFileAbove('AzSdk.reference.props'))" />
<Import Project="$([MSBuild]::GetPathOfFileAbove('AzSearch.DataPlane.props'))" />
<PropertyGroup>
<PackageId>Microsoft.Azure.Search</PackageId>
<Description>Makes it easy to develop a .NET application that uses Azure Search.</Description>
<AssemblyTitle>Microsoft Azure Search Library</AssemblyTitle>
<AssemblyName>Microsoft.Azure.Search</AssemblyName>
<Version>9.0.1</Version>
<PackageReleaseNotes>This is the newest major version of the Azure Search .NET SDK, based on version 2019-05-06 of the Azure Search REST API. New in this GA version is support for Cognitive Search, complex types for richer data modeling, the Autocomplete API, and additional parsing modes for Blob indexers. See this article for help on migrating to the latest version: http://aka.ms/search-sdk-upgrade. The 9.0.1 release includes a fix for the deadlock issue (https://github.com/Azure/azure-sdk-for-net/issues/6254) in the Search API.</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\AssemblyInfo.Common.cs" Link="Properties\AssemblyInfo.Common.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Search.Data" Version="[9.0.1, 10.0.0)" />
<PackageReference Include="Microsoft.Azure.Search.Service" Version="[9.0.1, 10.0.0)" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Microsoft.Azure.Search.Data\Microsoft.Azure.Search.Data.csproj" />
<ProjectReference Include="..\Microsoft.Azure.Search.Service\Microsoft.Azure.Search.Service.csproj" />
</ItemGroup>
</Project>