Skip to content

Commit

Permalink
Update dependencies from https://github.com/dotnet/arcade build 20210…
Browse files Browse the repository at this point in the history
…618.2 (#4700)

[main] Update dependencies from dotnet/arcade
  • Loading branch information
dotnet-maestro[bot] committed Jun 19, 2021
1 parent 74422b4 commit f073f27
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 18 deletions.
20 changes: 10 additions & 10 deletions eng/Version.Details.xml
Expand Up @@ -95,25 +95,25 @@
</Dependency>
</ProductDependencies>
<ToolsetDependencies>
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="6.0.0-beta.21317.1">
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="6.0.0-beta.21318.2">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>5619c32997ab2d6a5ddf6d2e488c572b882f891b</Sha>
<Sha>4a2adbaf2da67d8951fbc19d4c257a6fd51741c2</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.CodeAnalysis" Version="6.0.0-beta.21317.1">
<Dependency Name="Microsoft.DotNet.CodeAnalysis" Version="6.0.0-beta.21318.2">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>5619c32997ab2d6a5ddf6d2e488c572b882f891b</Sha>
<Sha>4a2adbaf2da67d8951fbc19d4c257a6fd51741c2</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="6.0.0-beta.21317.1">
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="6.0.0-beta.21318.2">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>5619c32997ab2d6a5ddf6d2e488c572b882f891b</Sha>
<Sha>4a2adbaf2da67d8951fbc19d4c257a6fd51741c2</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.ApiCompat" Version="6.0.0-beta.21317.1">
<Dependency Name="Microsoft.DotNet.ApiCompat" Version="6.0.0-beta.21318.2">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>5619c32997ab2d6a5ddf6d2e488c572b882f891b</Sha>
<Sha>4a2adbaf2da67d8951fbc19d4c257a6fd51741c2</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.GenAPI" Version="6.0.0-beta.21317.1">
<Dependency Name="Microsoft.DotNet.GenAPI" Version="6.0.0-beta.21318.2">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>5619c32997ab2d6a5ddf6d2e488c572b882f891b</Sha>
<Sha>4a2adbaf2da67d8951fbc19d4c257a6fd51741c2</Sha>
</Dependency>
</ToolsetDependencies>
</Dependencies>
6 changes: 3 additions & 3 deletions eng/Versions.props
Expand Up @@ -42,9 +42,9 @@
</PropertyGroup>
<!-- Packages that come from https://github.com/dotnet/arcade -->
<PropertyGroup>
<MicrosoftDotNetApiCompatVersion>6.0.0-beta.21317.1</MicrosoftDotNetApiCompatVersion>
<MicrosoftDotNetCodeAnalysisPackageVersion>6.0.0-beta.21317.1</MicrosoftDotNetCodeAnalysisPackageVersion>
<MicrosoftDotNetGenAPIVersion>6.0.0-beta.21317.1</MicrosoftDotNetGenAPIVersion>
<MicrosoftDotNetApiCompatVersion>6.0.0-beta.21318.2</MicrosoftDotNetApiCompatVersion>
<MicrosoftDotNetCodeAnalysisPackageVersion>6.0.0-beta.21318.2</MicrosoftDotNetCodeAnalysisPackageVersion>
<MicrosoftDotNetGenAPIVersion>6.0.0-beta.21318.2</MicrosoftDotNetGenAPIVersion>
</PropertyGroup>
<!-- Maintain System.CodeDom PackageVersion at 4.4.0. See https://github.com/Microsoft/msbuild/issues/3627 -->
<!-- Pin specific versions of S.Memory so that it would supply AssemblyVersion=4.0.1.0. See https://github.com/dotnet/runtime/issues/31672 -->
Expand Down
13 changes: 10 additions & 3 deletions eng/common/generate-locproject.ps1
Expand Up @@ -25,8 +25,15 @@ Push-Location "$SourcesDirectory" # push location for Resolve-Path -Relative to

# Template files
$jsonFiles = @()
$jsonFiles += Get-ChildItem -Recurse -Path "$SourcesDirectory" | Where-Object { $_.FullName -Match "\.template\.config\\localize\\en\..+\.json" } # .NET templating pattern
$jsonFiles += Get-ChildItem -Recurse -Path "$SourcesDirectory" | Where-Object { $_.FullName -Match "en\\strings\.json" } # current winforms pattern
$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
}

$jsonWinformsTemplateFiles = Get-ChildItem -Recurse -Path "$SourcesDirectory" | Where-Object { $_.FullName -Match "en\\strings\.json" } # current winforms pattern

$xlfFiles = @()

Expand All @@ -44,7 +51,7 @@ $langXlfFiles | ForEach-Object {
$xlfFiles += Copy-Item "$($_.FullName)" -Destination $destinationFile -PassThru
}

$locFiles = $jsonFiles + $xlfFiles
$locFiles = $jsonFiles + $jsonWinformsTemplateFiles + $xlfFiles

$locJson = @{
Projects = @(
Expand Down
4 changes: 2 additions & 2 deletions global.json
Expand Up @@ -12,8 +12,8 @@
}
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21317.1",
"Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21317.1"
"Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.21318.2",
"Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.21318.2"
},
"sdk": {
"version": "6.0.100-preview.4.21255.9"
Expand Down

0 comments on commit f073f27

Please sign in to comment.