07a15f9420
* Terminate the 'StartsWith' string in the badge existence check. * Replace "string.Concat"
41 lines
2.1 KiB
XML
41 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Target Name="FinishBuild"
|
|
Condition="'$(IsNotOrchestratedPublish)' == 'true'"
|
|
DependsOnTargets="CheckIfAllBuildsHavePublished;
|
|
FinalizeBuild" />
|
|
|
|
<Target Name="CheckIfAllBuildsHavePublished"
|
|
DependsOnTargets="SetBadgeProps">
|
|
<CheckIfAllBuildsHavePublished AccountKey="$(ArtifactCloudDropAccessToken)"
|
|
AccountName="$(ArtifactCloudDropAccountName)"
|
|
ContainerName="$(ArtifactContainerName)"
|
|
NugetVersion="$(FullNugetVersion)"
|
|
VersionBadgeMoniker="$(VersionBadgeMoniker)">
|
|
<Output TaskParameter="HaveAllBuildsPublished" PropertyName="HaveAllBuildsPublished" />
|
|
</CheckIfAllBuildsHavePublished>
|
|
</Target>
|
|
|
|
<Target Name="FinalizeBuild" Condition=" '$(HaveAllBuildsPublished)' == 'True' ">
|
|
<CopyBlobsToLatest AccountName="$(ArtifactCloudDropAccountName)"
|
|
AccountKey="$(ArtifactCloudDropAccessToken)"
|
|
ContainerName="$(ArtifactContainerName)"
|
|
NugetVersion="$(FullNugetVersion)"
|
|
Channel="$(Channel)"
|
|
CommitHash="$(CommitHash)"
|
|
Coherent="$(Coherent)" />
|
|
|
|
<CopyBlobsToLatest AccountName="$(ChecksumCloudDropAccountName)"
|
|
AccountKey="$(ChecksumCloudDropAccessToken)"
|
|
ContainerName="$(ChecksumContainerName)"
|
|
NugetVersion="$(FullNugetVersion)"
|
|
Channel="$(Channel)"
|
|
CommitHash="$(CommitHash)"
|
|
Coherent="$(Coherent)" />
|
|
|
|
<UpdateVersionsRepo BranchName="$(BranchName)"
|
|
PackagesDirectory="$(PackagesDirectory)"
|
|
GitHubPassword="$(GITHUB_PASSWORD)"
|
|
Condition=" '$(GITHUB_PASSWORD)' != '' " />
|
|
</Target>
|
|
</Project>
|