Skip to content

Commit

Permalink
Fix warnings so that they actually trigger!
Browse files Browse the repository at this point in the history
  • Loading branch information
tboby committed Oct 23, 2024
1 parent 8fd6473 commit c5583aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/build/Core.targets
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<Warning Code="CNG0002" Text="No Changelog File was was found at the specified location '$(ChangelogFile)'. Please set this property to the path to your KeepAChangelog-formatted changelog file."/>
</Target>

<Target Name="ValidateChangelog" DependsOnTargets="WarnOnNoChangelogFileSet;WarnOnNoChangelogFileExists"/>
<Target Name="ValidateChangelog" BeforeTargets="GetChangelogVersion" DependsOnTargets="WarnOnNoChangelogFileSet;WarnOnNoChangelogFileExists"/>

<Target Name="GetChangelogVersion" Condition="'$(ChangelogFile)' != '' and Exists('$(ChangelogFile)')" DependsOnTargets="ValidateChangelog" Inputs="$(ChangelogFile)" Outputs="UnreleasedChangelog;CurrentReleaseChangelog;AllReleasedChangelogslLatestReleaseNotes">
<Ionide.KeepAChangelog.Tasks.ParseChangeLogs ChangelogFile="$(ChangelogFile)">
Expand Down

0 comments on commit c5583aa

Please sign in to comment.