forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Microsoft.Azure.Search.Service.csproj
23 lines (22 loc) · 1.44 KB
/
Microsoft.Azure.Search.Service.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$([MSBuild]::GetPathOfFileAbove('AzSdk.reference.props'))" />
<Import Project="$([MSBuild]::GetPathOfFileAbove('AzSearch.DataPlane.props'))" />
<PropertyGroup>
<PackageId>Microsoft.Azure.Search.Service</PackageId>
<Description>Use this package if you're developing automation in .NET to manage Azure Search indexes, synonym maps, indexers, data sources, or other service-level resources. If you only need to query or update documents in your indexes, use the Microsoft.Azure.Search.Data package instead. If you need all the functionality of Azure Search, use the Microsoft.Azure.Search package instead.</Description>
<AssemblyTitle>Microsoft Azure Search Service Library</AssemblyTitle>
<AssemblyName>Microsoft.Azure.Search.Service</AssemblyName>
<Version>9.0.0</Version>
<PackageReleaseNotes>See the Microsoft.Azure.Search package for detailed release notes on the entire Azure Search .NET SDK.</PackageReleaseNotes>
</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.0, 10.0.0)" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Microsoft.Azure.Search.Common\Microsoft.Azure.Search.Common.csproj" />
</ItemGroup>
</Project>