Skip to content

Commit

Permalink
Update dependencies from https://github.com/dotnet/arcade build 20220…
Browse files Browse the repository at this point in the history
…706.3

Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.CMake.Sdk , Microsoft.DotNet.GenFacades , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.RemoteExecutor , Microsoft.DotNet.XUnitExtensions
 From Version 7.0.0-beta.22327.2 -> To Version 7.0.0-beta.22356.3
  • Loading branch information
dotnet-maestro[bot] authored and Tanya-Solyanik committed Jul 12, 2022
1 parent e488b0a commit 7112943
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 26 deletions.
24 changes: 12 additions & 12 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
Expand Up @@ -130,29 +130,29 @@ Note: if the Uri is a new place, you will need to add a subscription from that p
</ProductDependencies>
<ToolsetDependencies>
<!-- Arcade -->
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="7.0.0-beta.22355.4">
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="7.0.0-beta.22356.3">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>9f45238c23d89cf44a10705db1217e66a441ba5a</Sha>
<Sha>78adce7e3545bf5a5252fd9963969d8950fadea6</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.GenFacades" Version="7.0.0-beta.22355.4">
<Dependency Name="Microsoft.DotNet.GenFacades" Version="7.0.0-beta.22356.3">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>9f45238c23d89cf44a10705db1217e66a441ba5a</Sha>
<Sha>78adce7e3545bf5a5252fd9963969d8950fadea6</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.CMake.Sdk" Version="7.0.0-beta.22355.4">
<Dependency Name="Microsoft.DotNet.CMake.Sdk" Version="7.0.0-beta.22356.3">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>9f45238c23d89cf44a10705db1217e66a441ba5a</Sha>
<Sha>78adce7e3545bf5a5252fd9963969d8950fadea6</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="7.0.0-beta.22355.4">
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="7.0.0-beta.22356.3">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>9f45238c23d89cf44a10705db1217e66a441ba5a</Sha>
<Sha>78adce7e3545bf5a5252fd9963969d8950fadea6</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.RemoteExecutor" Version="7.0.0-beta.22355.4">
<Dependency Name="Microsoft.DotNet.RemoteExecutor" Version="7.0.0-beta.22356.3">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>9f45238c23d89cf44a10705db1217e66a441ba5a</Sha>
<Sha>78adce7e3545bf5a5252fd9963969d8950fadea6</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.XUnitExtensions" Version="7.0.0-beta.22355.4">
<Dependency Name="Microsoft.DotNet.XUnitExtensions" Version="7.0.0-beta.22356.3">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>9f45238c23d89cf44a10705db1217e66a441ba5a</Sha>
<Sha>78adce7e3545bf5a5252fd9963969d8950fadea6</Sha>
</Dependency>
</ToolsetDependencies>
</Dependencies>
6 changes: 3 additions & 3 deletions eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@
</PropertyGroup>
<!-- Arcade -->
<PropertyGroup>
<MicrosoftDotNetGenFacadesPackageVersion>7.0.0-beta.22355.4</MicrosoftDotNetGenFacadesPackageVersion>
<MicrosoftDotNetRemoteExecutorVersion>7.0.0-beta.22355.4</MicrosoftDotNetRemoteExecutorVersion>
<MicrosoftDotNetXUnitExtensionsPackageVersion>7.0.0-beta.22355.4</MicrosoftDotNetXUnitExtensionsPackageVersion>
<MicrosoftDotNetGenFacadesPackageVersion>7.0.0-beta.22356.3</MicrosoftDotNetGenFacadesPackageVersion>
<MicrosoftDotNetRemoteExecutorVersion>7.0.0-beta.22356.3</MicrosoftDotNetRemoteExecutorVersion>
<MicrosoftDotNetXUnitExtensionsPackageVersion>7.0.0-beta.22356.3</MicrosoftDotNetXUnitExtensionsPackageVersion>
<MicrosoftNETTestSdkVersion>16.5.0</MicrosoftNETTestSdkVersion>
</PropertyGroup>
<!-- Below have no corresponding entries in Versions.Details.XML because they are not updated via Maestro -->
Expand Down
14 changes: 6 additions & 8 deletions eng/common/generate-locproject.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ Param(

Set-StrictMode -Version 2.0
$ErrorActionPreference = "Stop"
. $PSScriptRoot\tools.ps1

Import-Module -Name (Join-Path $PSScriptRoot 'native\CommonLibrary.psm1')
. $PSScriptRoot\pipeline-logging-functions.ps1

$exclusionsFilePath = "$SourcesDirectory\eng\Localize\LocExclusions.json"
$exclusions = @{ Exclusions = @() }
Expand All @@ -28,7 +26,7 @@ $jsonFiles = @()
$jsonTemplateFiles = Get-ChildItem -Recurse -Path "$SourcesDirectory" | Where-Object { $_.FullName -Match "\.template\.config\\localize\\.+\.en\.json" } # .NET templating pattern
$jsonTemplateFiles | ForEach-Object {
$null = $_.Name -Match "(.+)\.[\w-]+\.json" # matches '[filename].[langcode].json

$destinationFile = "$($_.Directory.FullName)\$($Matches.1).json"
$jsonFiles += Copy-Item "$($_.FullName)" -Destination $destinationFile -PassThru
}
Expand All @@ -46,7 +44,7 @@ if ($allXlfFiles) {
}
$langXlfFiles | ForEach-Object {
$null = $_.Name -Match "(.+)\.[\w-]+\.xlf" # matches '[filename].[langcode].xlf

$destinationFile = "$($_.Directory.FullName)\$($Matches.1).xlf"
$xlfFiles += Copy-Item "$($_.FullName)" -Destination $destinationFile -PassThru
}
Expand All @@ -59,7 +57,7 @@ $locJson = @{
LanguageSet = $LanguageSet
LocItems = @(
$locFiles | ForEach-Object {
$outputPath = "$(($_.DirectoryName | Resolve-Path -Relative) + "\")"
$outputPath = "$(($_.DirectoryName | Resolve-Path -Relative) + "\")"
$continue = $true
foreach ($exclusion in $exclusions.Exclusions) {
if ($outputPath.Contains($exclusion))
Expand Down Expand Up @@ -108,10 +106,10 @@ else {

if ((Get-FileHash "$SourcesDirectory\eng\Localize\LocProject-generated.json").Hash -ne (Get-FileHash "$SourcesDirectory\eng\Localize\LocProject.json").Hash) {
Write-PipelineTelemetryError -Category "OneLocBuild" -Message "Existing LocProject.json differs from generated LocProject.json. Download LocProject-generated.json and compare them."

exit 1
}
else {
Write-Host "Generated LocProject.json and current LocProject.json are identical."
}
}
}
6 changes: 3 additions & 3 deletions global.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"version": "7.0.100-preview.5.22307.18"
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.22355.4",
"Microsoft.DotNet.CMake.Sdk": "7.0.0-beta.22355.4",
"Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.22355.4",
"Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.22356.3",
"Microsoft.DotNet.CMake.Sdk": "7.0.0-beta.22356.3",
"Microsoft.DotNet.Helix.Sdk": "7.0.0-beta.22356.3",
"FIX-85B6-MERGE-9C38-CONFLICT": "1.0.0",
"Microsoft.NET.Sdk.IL": "7.0.0-preview.6.22356.9"
},
Expand Down

0 comments on commit 7112943

Please sign in to comment.