Browse Source

Update dependencies from https://github.com/dotnet/arcade build 20230217.2 (#1541)

[main] Update dependencies from dotnet/arcade
pull/1542/head
dotnet-maestro[bot] 4 years ago
committed by GitHub
parent
commit
9984544991
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 20
      eng/Version.Details.xml
  2. 9
      eng/common/generate-locproject.ps1
  3. 2
      global.json

20
eng/Version.Details.xml

@ -3,25 +3,25 @@
<ProductDependencies>
</ProductDependencies>
<ToolsetDependencies>
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.23115.1">
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.23117.2">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>83284ab08840fe5f429ecd9fa935e81527023553</Sha>
<Sha>53902aeb8989149b43592475fbb143b6bfe5297f</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.Build.Tasks.Feed" Version="8.0.0-beta.23115.1">
<Dependency Name="Microsoft.DotNet.Build.Tasks.Feed" Version="8.0.0-beta.23117.2">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>83284ab08840fe5f429ecd9fa935e81527023553</Sha>
<Sha>53902aeb8989149b43592475fbb143b6bfe5297f</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.SignTool" Version="8.0.0-beta.23115.1">
<Dependency Name="Microsoft.DotNet.SignTool" Version="8.0.0-beta.23117.2">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>83284ab08840fe5f429ecd9fa935e81527023553</Sha>
<Sha>53902aeb8989149b43592475fbb143b6bfe5297f</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="8.0.0-beta.23115.1">
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="8.0.0-beta.23117.2">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>83284ab08840fe5f429ecd9fa935e81527023553</Sha>
<Sha>53902aeb8989149b43592475fbb143b6bfe5297f</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.SwaggerGenerator.MSBuild" Version="8.0.0-beta.23115.1">
<Dependency Name="Microsoft.DotNet.SwaggerGenerator.MSBuild" Version="8.0.0-beta.23117.2">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>83284ab08840fe5f429ecd9fa935e81527023553</Sha>
<Sha>53902aeb8989149b43592475fbb143b6bfe5297f</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.Maestro.Client" Version="1.1.0-beta.19556.4">
<Uri>https://github.com/dotnet/arcade-services</Uri>

9
eng/common/generate-locproject.ps1

@ -45,7 +45,7 @@ if (-not $wxlFiles) {
}
}
$macosHtmlEnFiles = Get-ChildItem -Recurse -Path "$SourcesDirectory" | Where-Object { $_.FullName -Match "en\.lproj\\.+\.html" } # add installer HTML files
$macosHtmlEnFiles = Get-ChildItem -Recurse -Path "$SourcesDirectory" | Where-Object { $_.FullName -Match "en\.lproj\\.+\.html$" } # add installer HTML files
$macosHtmlFiles = @()
if ($macosHtmlEnFiles) {
$macosHtmlEnFiles | ForEach-Object {
@ -148,12 +148,17 @@ $locJson = @{
}
}
$sourceFile = ($_.FullName | Resolve-Path -Relative)
$lciFile = $sourceFile + ".lci"
if ($continue) {
return @{
$result = @{
SourceFile = $sourceFile
CopyOption = "LangIDOnPath"
OutputPath = $outputPath
}
if (Test-Path $lciFile -PathType Leaf) {
$result["LciFile"] = $lciFile
}
return $result
}
}
)

2
global.json

@ -14,6 +14,6 @@
}
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23115.1"
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23117.2"
}
}

Loading…
Cancel
Save