Skip to content

Commit

Permalink
always re-compute PackageReleaseNotes (#10281)
Browse files Browse the repository at this point in the history
  • Loading branch information
brettfo committed Oct 19, 2020
1 parent 21ea2ba commit f5e7560
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions FSharpBuild.Directory.Build.targets
Expand Up @@ -125,9 +125,9 @@
DependsOnTargets="InitializeSourceControlInformationFromSourceControlManager"
Condition="'$(IsPackable)'=='true'">

<PropertyGroup Condition="$(ScmRepositoryUrl.EndsWith('.git'))">
<_GitUrl>$([System.Text.RegularExpressions.Regex]::Replace($(ScmRepositoryUrl), ".git$", ""))</_GitUrl>
<PackageReleaseNotes>$(_GitUrl)$(PackageReleaseNotes)</PackageReleaseNotes>
<PropertyGroup>
<_GitUrl>$([System.Text.RegularExpressions.Regex]::Replace($(ScmRepositoryUrl), ".git$", ""))</_GitUrl>
<PackageReleaseNotes>$(_GitUrl)$(PackageReleaseNotes)</PackageReleaseNotes>
</PropertyGroup>
</Target>

Expand Down

0 comments on commit f5e7560

Please sign in to comment.