Skip to content

Commit

Permalink
Fix versioning props for keyvault track 1 (#6985)
Browse files Browse the repository at this point in the history
  • Loading branch information
weshaggard authored Jul 19, 2019
1 parent d4599c1 commit ce639b7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions sdk/keyvault/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(IsDataPlane)' == 'true'">
<PropertyGroup Condition="$(MSBuildProjectName.EndsWith('.Samples'))">
<IsTestProject>true</IsTestProject>
<IsTestSupportProject>true</IsTestSupportProject>
</PropertyGroup>

<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory).., Directory.Build.props))\Directory.Build.props" />

<PropertyGroup Condition="'$(IsDataPlaneProject)' == 'true'">
<VersionPrefix>3.0.4</VersionPrefix>
<PackageTags>Microsoft Azure Key Vault;Key Vault;REST HTTP client;azureofficial;windowsazureofficial</PackageTags>
<PackageReleaseNotes>
Expand All @@ -8,11 +15,4 @@
]]>
</PackageReleaseNotes>
</PropertyGroup>

<PropertyGroup Condition="$(MSBuildProjectName.EndsWith('.Samples'))">
<IsTestProject>true</IsTestProject>
<IsTestSupportProject>true</IsTestSupportProject>
</PropertyGroup>

<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory).., Directory.Build.props))\Directory.Build.props" />
</Project>

0 comments on commit ce639b7

Please sign in to comment.