You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Self-hosting of the tool now checks if it is already built
Integrations only need to be triggered once and while the state isn't saved per call to `dotnet`, this prevents it re-triggering for multiple projects in the solution.
<SelfHostedBuildVersioningCondition="$(DesignTimeBuild) != 'true' AND $(SkipBuildVersioning) != 'true' AND !Exists($(BuildVersioningToolPath))">true</SelfHostedBuildVersioning>
<TargetName="_BuildVersioningWithGitHub"BeforeTargets="BeforeBuild"Condition="$(BuildVersioningWithGitHub) == 'true' AND $(GITHUB_RUN_ID) != ''">
13
+
<TargetName="_BuildVersioningWithGitHub"BeforeTargets="BeforeBuild"Condition="$(BuildVersioningWithGitHub) == 'true' AND $(GITHUB_RUN_ID) != '' AND !$(_BuildVersioningRunOne.Contains('github'))">
<MessageImportance="$(BuildVersioningLogLevel)"Text="BuildVersioning-GitHubIntegration: Fetching tags for versioning as they aren't available by default in GitHub Actions" />
<TargetName="_BuildVersioningWithAppVeyor"AfterTargets="BuildVersioning"Condition="$(BuildVersioningWithAppVeyor) == 'true' AND $(APPVEYOR) != ''">
25
+
<TargetName="_BuildVersioningWithAppVeyor"AfterTargets="BuildVersioning"Condition="$(BuildVersioningWithAppVeyor) == 'true' AND $(APPVEYOR) != '' AND !$(_BuildVersioningRunOne.Contains('appveyor'))">
0 commit comments