Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9b5b71c

Browse files
committedNov 5, 2024··
Fix release notes link to work by default
It also makes it work in the case where `PackageProjectUrl` isn't the github.com repository itself.
1 parent d046e43 commit 9b5b71c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
<Target Name="PrepareReleaseNotes" BeforeTargets="GenerateNuspec" DependsOnTargets="GetBuildVersion">
5353
<PropertyGroup>
54-
<PackageReleaseNotes Condition="'$(PackageProjectUrl)'!=''">$(PackageProjectUrl)/releases/tag/v$(Version)</PackageReleaseNotes>
54+
<PackageReleaseNotes Condition="'$(RepositoryUrl)'!=''">$(RepositoryUrl)/releases/tag/v$(Version)</PackageReleaseNotes>
5555
</PropertyGroup>
5656
</Target>
5757
</Project>

0 commit comments

Comments
 (0)
Please sign in to comment.