Update dependencies from https://github.com/dotnet/arcade build 20200902.19 (#8406)

[master] Update dependencies from dotnet/arcade
- Updates:
  - Microsoft.DotNet.Build.Tasks.Installers: from 5.0.0-beta.20451.5 to 5.0.0-beta.20452.19
  - Microsoft.DotNet.Arcade.Sdk: from 5.0.0-beta.20451.5 to 5.0.0-beta.20452.19
This commit is contained in:
dotnet-maestro[bot] 2020-09-04 15:32:57 +00:00 committed by GitHub
parent 1e276b11ae
commit 61537a6f99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 20 additions and 19 deletions

View file

@ -98,13 +98,13 @@
</Dependency> </Dependency>
</ProductDependencies> </ProductDependencies>
<ToolsetDependencies> <ToolsetDependencies>
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="5.0.0-beta.20451.5"> <Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="5.0.0-beta.20452.19">
<Uri>https://github.com/dotnet/arcade</Uri> <Uri>https://github.com/dotnet/arcade</Uri>
<Sha>663ead2cbcbc7ee3d5cb792a30209ad58d6ee971</Sha> <Sha>fd104228e5b97494a4ab0896a979b69928257ef9</Sha>
</Dependency> </Dependency>
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="5.0.0-beta.20451.5"> <Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="5.0.0-beta.20452.19">
<Uri>https://github.com/dotnet/arcade</Uri> <Uri>https://github.com/dotnet/arcade</Uri>
<Sha>663ead2cbcbc7ee3d5cb792a30209ad58d6ee971</Sha> <Sha>fd104228e5b97494a4ab0896a979b69928257ef9</Sha>
</Dependency> </Dependency>
</ToolsetDependencies> </ToolsetDependencies>
</Dependencies> </Dependencies>

View file

@ -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.20451.5</MicrosoftDotNetBuildTasksInstallersPackageVersion> <MicrosoftDotNetBuildTasksInstallersPackageVersion>5.0.0-beta.20452.19</MicrosoftDotNetBuildTasksInstallersPackageVersion>
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
<!-- Dependency from https://github.com/dotnet/winforms --> <!-- Dependency from https://github.com/dotnet/winforms -->

View file

@ -3,20 +3,21 @@ parameters:
JobLabel: '' JobLabel: ''
steps: steps:
- task: CopyFiles@2 - task: Powershell@2
displayName: Copy Logs to $(Build.StagingDirectory)\BuildLogs displayName: Prepare Binlogs to Upload
inputs: inputs:
SourceFolder: $(Build.SourcesDirectory)\artifacts targetType: inline
Contents: | script: |
**/*.log New-Item -ItemType Directory $(Build.SourcesDirectory)/PostBuildLogs/${{parameters.StageLabel}}/${{parameters.JobLabel}}/
**/*.binlog Move-Item -Path $(Build.SourcesDirectory)/artifacts/log/Debug/* $(Build.SourcesDirectory)/PostBuildLogs/${{parameters.StageLabel}}/${{parameters.JobLabel}}/
TargetFolder: '$(Build.StagingDirectory)\BuildLogs'
continueOnError: true continueOnError: true
condition: succeededOrFailed() condition: always()
- task: PublishPipelineArtifact@1 - task: PublishBuildArtifacts@1
displayName: Publish BuildLogs displayName: Publish Logs
inputs: inputs:
targetPath: '$(Build.StagingDirectory)\BuildLogs' PathtoPublish: '$(Build.SourcesDirectory)/PostBuildLogs'
artifactName: ${{ parameters.JobLabel }} PublishLocation: Container
condition: succeededOrFailed() ArtifactName: PostBuildLogs
continueOnError: true
condition: always()

View file

@ -8,6 +8,6 @@
} }
}, },
"msbuild-sdks": { "msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "5.0.0-beta.20451.5" "Microsoft.DotNet.Arcade.Sdk": "5.0.0-beta.20452.19"
} }
} }