Skip to content
This repository has been archived by the owner on Jul 16, 2023. It is now read-only.

Commit

Permalink
Fixing missing references in GitTag script.
Browse files Browse the repository at this point in the history
  • Loading branch information
pvandervelde committed May 27, 2014
1 parent a899113 commit 605ecbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Deploy.GitTag.msbuild
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<Import Project="$(MsBuildExtensionsPath)\GetSemanticVersion.msbuild"
Condition="Exists('$(MsBuildExtensionsPath)\GetSemanticVersion.msbuild')" />

<Target Name="Run" DependsOnTargets="_DisplayInfo;_TagRelease;" />
<Target Name="Run" DependsOnTargets="_DisplayInfo;_LoadReleaseNotes;_TagRelease;" />

<!-- Display info -->
<Target Name="_DisplayInfo">
Expand All @@ -40,7 +40,7 @@
<PropertyGroup>
<FileReleaseNotes>$(DirBuildTemp)\releasenotes_short.md</FileReleaseNotes>
</PropertyGroup>
<Target Name="_LoadReleaseNotes" DependsOnTargets="_DisplayInfo;_GetSemanticVersion">
<Target Name="_LoadReleaseNotes" DependsOnTargets="_DisplayInfo;_GetSemanticVersion;_LoadReleaseNotes">
<CreateProperty Condition="Exists('$(FileReleaseNotes)')" Value="$([System.IO.File]::ReadAllText('$(FileReleaseNotes)'))">
<Output TaskParameter="Value" PropertyName="ReleaseNotes" />
</CreateProperty>
Expand Down

0 comments on commit 605ecbc

Please sign in to comment.