Skip to content

Commit

Permalink
[Azure Search] Use Directory.Build.props for data plane versioning (A…
Browse files Browse the repository at this point in the history
  • Loading branch information
brjohnstmsft authored and weshaggard committed Jul 22, 2019
1 parent f034564 commit 60e6bde
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
10 changes: 10 additions & 0 deletions sdk/search/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\Directory.Build.props" />
<Choose>
<When Condition="'$(IsDataPlaneProject)' == 'true'">
<PropertyGroup>
<VersionPrefix>9.0.2</VersionPrefix>
</PropertyGroup>
</When>
</Choose>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
<PackageReleaseNotes>See the Microsoft.Azure.Search package for detailed release notes on the entire Azure Search .NET SDK.</PackageReleaseNotes>
</PropertyGroup>
<Import Project="..\..\Microsoft.Azure.Search.Version.props" />
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
<PackageReleaseNotes>See the Microsoft.Azure.Search package for detailed release notes on the entire Azure Search .NET SDK.</PackageReleaseNotes>
</PropertyGroup>
<Import Project="..\..\Microsoft.Azure.Search.Version.props" />
<ItemGroup>
<PackageReference Include="Microsoft.Spatial" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
<PackageReleaseNotes>See the Microsoft.Azure.Search package for detailed release notes on the entire Azure Search .NET SDK.</PackageReleaseNotes>
</PropertyGroup>
<Import Project="..\..\Microsoft.Azure.Search.Version.props" />
<ItemGroup>
<PackageReference Include="Microsoft.Spatial" />
</ItemGroup>
Expand Down
5 changes: 0 additions & 5 deletions sdk/search/Microsoft.Azure.Search.Version.props

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
<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>
<Import Project="..\..\Microsoft.Azure.Search.Version.props" />
<ItemGroup>
<ProjectReference Include="..\..\Microsoft.Azure.Search.Data\src\Microsoft.Azure.Search.Data.csproj" />
<ProjectReference Include="..\..\Microsoft.Azure.Search.Service\src\Microsoft.Azure.Search.Service.csproj" />
Expand Down

0 comments on commit 60e6bde

Please sign in to comment.