[master] Update dependencies from dotnet/arcade (#8589)
[master] Update dependencies from dotnet/arcade - Updates for Arcade breaking change to CreateLightCommandPackageDrop
This commit is contained in:
parent
2c2086e163
commit
29d83f4881
6 changed files with 39 additions and 50 deletions
|
@ -98,13 +98,13 @@
|
||||||
</Dependency>
|
</Dependency>
|
||||||
</ProductDependencies>
|
</ProductDependencies>
|
||||||
<ToolsetDependencies>
|
<ToolsetDependencies>
|
||||||
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="5.0.0-beta.20461.7">
|
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="5.0.0-beta.20465.7">
|
||||||
<Uri>https://github.com/dotnet/arcade</Uri>
|
<Uri>https://github.com/dotnet/arcade</Uri>
|
||||||
<Sha>a81e6e87cf21837abfde2da6eb9b057bea9f49fc</Sha>
|
<Sha>fa0486ddb04a76341d822903c8977fb9fa088d1e</Sha>
|
||||||
</Dependency>
|
</Dependency>
|
||||||
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="5.0.0-beta.20461.7">
|
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="5.0.0-beta.20465.7">
|
||||||
<Uri>https://github.com/dotnet/arcade</Uri>
|
<Uri>https://github.com/dotnet/arcade</Uri>
|
||||||
<Sha>a81e6e87cf21837abfde2da6eb9b057bea9f49fc</Sha>
|
<Sha>fa0486ddb04a76341d822903c8977fb9fa088d1e</Sha>
|
||||||
</Dependency>
|
</Dependency>
|
||||||
</ToolsetDependencies>
|
</ToolsetDependencies>
|
||||||
</Dependencies>
|
</Dependencies>
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<!-- Dependency from https://github.com/dotnet/arcade -->
|
<!-- Dependency from https://github.com/dotnet/arcade -->
|
||||||
<MicrosoftDotNetBuildTasksInstallersPackageVersion>5.0.0-beta.20461.7</MicrosoftDotNetBuildTasksInstallersPackageVersion>
|
<MicrosoftDotNetBuildTasksInstallersPackageVersion>5.0.0-beta.20465.7</MicrosoftDotNetBuildTasksInstallersPackageVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<!-- Dependency from https://github.com/dotnet/winforms -->
|
<!-- Dependency from https://github.com/dotnet/winforms -->
|
||||||
|
|
|
@ -144,11 +144,27 @@ $ValidatePackage = {
|
||||||
|
|
||||||
if ($FailedFiles -eq 0) {
|
if ($FailedFiles -eq 0) {
|
||||||
Write-Host 'Passed.'
|
Write-Host 'Passed.'
|
||||||
return 0
|
return [pscustomobject]@{
|
||||||
|
result = 0
|
||||||
|
packagePath = $PackagePath
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
Write-PipelineTelemetryError -Category 'SourceLink' -Message "$PackagePath has broken SourceLink links."
|
Write-PipelineTelemetryError -Category 'SourceLink' -Message "$PackagePath has broken SourceLink links."
|
||||||
return 1
|
return [pscustomobject]@{
|
||||||
|
result = 1
|
||||||
|
packagePath = $PackagePath
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function CheckJobResult(
|
||||||
|
$result,
|
||||||
|
$packagePath,
|
||||||
|
[ref]$ValidationFailures) {
|
||||||
|
if ($jobResult.result -ne '0') {
|
||||||
|
Write-PipelineTelemetryError -Category 'SourceLink' -Message "$packagePath has broken SourceLink links."
|
||||||
|
$ValidationFailures.Value++
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -211,10 +227,8 @@ function ValidateSourceLinkLinks {
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($Job in @(Get-Job -State 'Completed')) {
|
foreach ($Job in @(Get-Job -State 'Completed')) {
|
||||||
$jobResult = Receive-Job -Id $Job.Id
|
$jobResult = Wait-Job -Id $Job.Id | Receive-Job
|
||||||
if ($jobResult -ne '0') {
|
CheckJobResult $jobResult.result $jobResult.packagePath ([ref]$ValidationFailures)
|
||||||
$ValidationFailures++
|
|
||||||
}
|
|
||||||
Remove-Job -Id $Job.Id
|
Remove-Job -Id $Job.Id
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -141,11 +141,6 @@ $CountMissingSymbols = {
|
||||||
if ($using:Clean) {
|
if ($using:Clean) {
|
||||||
Remove-Item $ExtractPath -Recurse -Force
|
Remove-Item $ExtractPath -Recurse -Force
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($MissingSymbols -ne 0)
|
|
||||||
{
|
|
||||||
Write-PipelineTelemetryError -Category 'CheckSymbols' -Message "Missing symbols for $MissingSymbols modules in the package $PackagePath"
|
|
||||||
}
|
|
||||||
|
|
||||||
Pop-Location
|
Pop-Location
|
||||||
|
|
||||||
|
@ -165,6 +160,7 @@ function CheckJobResult(
|
||||||
$DupedSymbols.Value++
|
$DupedSymbols.Value++
|
||||||
}
|
}
|
||||||
elseif ($jobResult.result -ne '0') {
|
elseif ($jobResult.result -ne '0') {
|
||||||
|
Write-PipelineTelemetryError -Category 'CheckSymbols' -Message "Missing symbols for $result modules in the package $packagePath"
|
||||||
$TotalFailures.Value++
|
$TotalFailures.Value++
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -201,7 +197,6 @@ function CheckSymbolsAvailable {
|
||||||
Start-Job -ScriptBlock $CountMissingSymbols -ArgumentList $FullName | Out-Null
|
Start-Job -ScriptBlock $CountMissingSymbols -ArgumentList $FullName | Out-Null
|
||||||
|
|
||||||
$NumJobs = @(Get-Job -State 'Running').Count
|
$NumJobs = @(Get-Job -State 'Running').Count
|
||||||
Write-Host $NumJobs
|
|
||||||
|
|
||||||
while ($NumJobs -ge $MaxParallelJobs) {
|
while ($NumJobs -ge $MaxParallelJobs) {
|
||||||
Write-Host "There are $NumJobs validation jobs running right now. Waiting $SecondsBetweenLoadChecks seconds to check again."
|
Write-Host "There are $NumJobs validation jobs running right now. Waiting $SecondsBetweenLoadChecks seconds to check again."
|
||||||
|
|
|
@ -8,6 +8,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"msbuild-sdks": {
|
"msbuild-sdks": {
|
||||||
"Microsoft.DotNet.Arcade.Sdk": "5.0.0-beta.20461.7"
|
"Microsoft.DotNet.Arcade.Sdk": "5.0.0-beta.20465.7"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -197,19 +197,14 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<CreateLightCommandPackageDrop
|
<CreateLightCommandPackageDrop
|
||||||
LightCommandWorkingDir="$(LightCommandObjDir)"
|
LightCommandWorkingDir="$(LightCommandObjDir)"
|
||||||
|
OutputFolder="$(LightCommandPackagesDir)"
|
||||||
NoLogo="true"
|
NoLogo="true"
|
||||||
Cultures="en-us"
|
Cultures="en-us"
|
||||||
Out="$(SdkMSIInstallerFile)"
|
InstallerFile="$(SdkMSIInstallerFile)"
|
||||||
WixExtensions="WixUIExtension;WixDependencyExtension;WixUtilExtension"
|
WixExtensions="WixUIExtension;WixDependencyExtension;WixUtilExtension"
|
||||||
WixSrcFiles="@(SdkMsiWixSrcFiles)">
|
WixSrcFiles="@(SdkMsiWixSrcFiles)">
|
||||||
<Output TaskParameter="LightCommandPackageNameOutput" PropertyName="_LightCommandPackageNameOutput" />
|
<Output TaskParameter="OutputFile" PropertyName="_LightCommandPackageNameOutput" />
|
||||||
</CreateLightCommandPackageDrop>
|
</CreateLightCommandPackageDrop>
|
||||||
<MakeDir Directories="$(LightCommandPackagesDir)" />
|
|
||||||
|
|
||||||
<ZipDirectory
|
|
||||||
DestinationFile="$(LightCommandPackagesDir)/LightCommandPackage-$(_LightCommandPackageNameOutput).zip"
|
|
||||||
SourceDirectory="$(LightCommandObjDir)/$(_LightCommandPackageNameOutput)"
|
|
||||||
Overwrite="true" />
|
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<Target Name="GenerateSdkPlaceholderMsi"
|
<Target Name="GenerateSdkPlaceholderMsi"
|
||||||
|
@ -235,20 +230,15 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<CreateLightCommandPackageDrop
|
<CreateLightCommandPackageDrop
|
||||||
LightCommandWorkingDir="$(LightCommandObjDir)"
|
LightCommandWorkingDir="$(LightCommandObjDir)"
|
||||||
|
OutputFolder="$(LightCommandPackagesDir)"
|
||||||
NoLogo="true"
|
NoLogo="true"
|
||||||
Cultures="en-us"
|
Cultures="en-us"
|
||||||
Out="$(SdkPlaceholderMSIInstallerFile)"
|
InstallerFile="$(SdkPlaceholderMSIInstallerFile)"
|
||||||
WixExtensions="WixUIExtension;WixDependencyExtension;WixUtilExtension"
|
WixExtensions="WixUIExtension;WixDependencyExtension;WixUtilExtension"
|
||||||
WixSrcFiles="@(SdkPlaceholdMsiWixSrcFiles)"
|
WixSrcFiles="@(SdkPlaceholdMsiWixSrcFiles)"
|
||||||
AdditionalBasePaths="$(MSBuildThisFileDirectory)packaging/windows/clisdk">
|
AdditionalBasePaths="$(MSBuildThisFileDirectory)packaging/windows/clisdk">
|
||||||
<Output TaskParameter="LightCommandPackageNameOutput" PropertyName="_LightCommandPackageNameOutput" />
|
<Output TaskParameter="OutputFile" PropertyName="_LightCommandPackageNameOutput" />
|
||||||
</CreateLightCommandPackageDrop>
|
</CreateLightCommandPackageDrop>
|
||||||
<MakeDir Directories="$(LightCommandPackagesDir)" />
|
|
||||||
|
|
||||||
<ZipDirectory
|
|
||||||
DestinationFile="$(LightCommandPackagesDir)/LightCommandPackage-$(_LightCommandPackageNameOutput).zip"
|
|
||||||
SourceDirectory="$(LightCommandObjDir)/$(_LightCommandPackageNameOutput)"
|
|
||||||
Overwrite="true" />
|
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<Target Name="GenerateTemplatesMsis"
|
<Target Name="GenerateTemplatesMsis"
|
||||||
|
@ -277,19 +267,14 @@
|
||||||
|
|
||||||
<CreateLightCommandPackageDrop
|
<CreateLightCommandPackageDrop
|
||||||
LightCommandWorkingDir="$(LightCommandObjDir)"
|
LightCommandWorkingDir="$(LightCommandObjDir)"
|
||||||
|
OutputFolder="$(LightCommandPackagesDir)"
|
||||||
NoLogo="true"
|
NoLogo="true"
|
||||||
Cultures="en-us"
|
Cultures="en-us"
|
||||||
Out="%(TemplatesMsiComponent.MSIInstallerFile)"
|
InstallerFile="%(TemplatesMsiComponent.MSIInstallerFile)"
|
||||||
WixExtensions="WixUIExtension;WixDependencyExtension;WixUtilExtension"
|
WixExtensions="WixUIExtension;WixDependencyExtension;WixUtilExtension"
|
||||||
WixSrcFiles="@(TemplatesMsiWixSrcFiles)">
|
WixSrcFiles="@(TemplatesMsiWixSrcFiles)">
|
||||||
<Output TaskParameter="LightCommandPackageNameOutput" PropertyName="_LightCommandPackageNameOutput" />
|
<Output TaskParameter="OutputFile" PropertyName="_LightCommandPackageNameOutput" />
|
||||||
</CreateLightCommandPackageDrop>
|
</CreateLightCommandPackageDrop>
|
||||||
<MakeDir Directories="$(LightCommandPackagesDir)" />
|
|
||||||
|
|
||||||
<ZipDirectory
|
|
||||||
DestinationFile="$(LightCommandPackagesDir)/LightCommandPackage-$(_LightCommandPackageNameOutput).zip"
|
|
||||||
SourceDirectory="$(LightCommandObjDir)/$(_LightCommandPackageNameOutput)"
|
|
||||||
Overwrite="true" />
|
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<Target Name="SetupTemplatesMsis">
|
<Target Name="SetupTemplatesMsis">
|
||||||
|
@ -379,20 +364,15 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<CreateLightCommandPackageDrop
|
<CreateLightCommandPackageDrop
|
||||||
LightCommandWorkingDir="$(LightCommandObjDir)"
|
LightCommandWorkingDir="$(LightCommandObjDir)"
|
||||||
|
OutputFolder="$(LightCommandPackagesDir)"
|
||||||
NoLogo="true"
|
NoLogo="true"
|
||||||
Cultures="en-us"
|
Cultures="en-us"
|
||||||
Out="$(CombinedFrameworkSdkHostMSIInstallerFile)"
|
InstallerFile="$(CombinedFrameworkSdkHostMSIInstallerFile)"
|
||||||
WixExtensions="WixBalExtension;WixUtilExtension;WixTagExtension"
|
WixExtensions="WixBalExtension;WixUtilExtension;WixTagExtension"
|
||||||
WixSrcFiles="@(BundleMsiWixSrcFiles)"
|
WixSrcFiles="@(BundleMsiWixSrcFiles)"
|
||||||
AdditionalBasePaths="$(MSBuildThisFileDirectory)packaging/windows/clisdk">
|
AdditionalBasePaths="$(MSBuildThisFileDirectory)packaging/windows/clisdk">
|
||||||
<Output TaskParameter="LightCommandPackageNameOutput" PropertyName="_LightCommandPackageNameOutput" />
|
<Output TaskParameter="OutputFile" PropertyName="_LightCommandPackageNameOutput" />
|
||||||
</CreateLightCommandPackageDrop>
|
</CreateLightCommandPackageDrop>
|
||||||
<MakeDir Directories="$(LightCommandPackagesDir)" />
|
|
||||||
|
|
||||||
<ZipDirectory
|
|
||||||
DestinationFile="$(LightCommandPackagesDir)/LightCommandPackage-$(_LightCommandPackageNameOutput).zip"
|
|
||||||
SourceDirectory="$(LightCommandObjDir)/$(_LightCommandPackageNameOutput)"
|
|
||||||
Overwrite="true" />
|
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<Target Name="GenerateToolsetNupkg"
|
<Target Name="GenerateToolsetNupkg"
|
||||||
|
|
Loading…
Reference in a new issue