Skip to content

Commit 6ecb326

Browse files
Update dependencies from https://github.com/dotnet/arcade build 20230218.1 (#319)
[dotnet/main] Update dependencies from dotnet/arcade
1 parent 731657f commit 6ecb326

File tree

4 files changed

+16
-11
lines changed

4 files changed

+16
-11
lines changed

eng/Version.Details.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
<ProductDependencies>
44
</ProductDependencies>
55
<ToolsetDependencies>
6-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.23110.3">
6+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.23118.1">
77
<Uri>https://github.com/dotnet/arcade</Uri>
8-
<Sha>96d8be74c39a4765ec919ff9bebf9e0c875fc195</Sha>
8+
<Sha>38d3196e1596eb525367ec8d65fcc1f30a58261c</Sha>
99
</Dependency>
10-
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="8.0.0-beta.23110.3">
10+
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="8.0.0-beta.23118.1">
1111
<Uri>https://github.com/dotnet/arcade</Uri>
12-
<Sha>96d8be74c39a4765ec919ff9bebf9e0c875fc195</Sha>
12+
<Sha>38d3196e1596eb525367ec8d65fcc1f30a58261c</Sha>
1313
</Dependency>
14-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Packaging" Version="8.0.0-beta.23110.3">
14+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Packaging" Version="8.0.0-beta.23118.1">
1515
<Uri>https://github.com/dotnet/arcade</Uri>
16-
<Sha>96d8be74c39a4765ec919ff9bebf9e0c875fc195</Sha>
16+
<Sha>38d3196e1596eb525367ec8d65fcc1f30a58261c</Sha>
1717
</Dependency>
1818
</ToolsetDependencies>
1919
</Dependencies>

eng/Versions.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<PreReleaseVersionIteration>2</PreReleaseVersionIteration>
77
</PropertyGroup>
88
<PropertyGroup>
9-
<MicrosoftDotNetBuildTasksPackagingVersion>8.0.0-beta.23110.3</MicrosoftDotNetBuildTasksPackagingVersion>
9+
<MicrosoftDotNetBuildTasksPackagingVersion>8.0.0-beta.23118.1</MicrosoftDotNetBuildTasksPackagingVersion>
1010
</PropertyGroup>
1111
<PropertyGroup>
1212
<WasiSdkVersion>16</WasiSdkVersion>

eng/common/generate-locproject.ps1

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ if (-not $wxlFiles) {
4545
}
4646
}
4747

48-
$macosHtmlEnFiles = Get-ChildItem -Recurse -Path "$SourcesDirectory" | Where-Object { $_.FullName -Match "en\.lproj\\.+\.html" } # add installer HTML files
48+
$macosHtmlEnFiles = Get-ChildItem -Recurse -Path "$SourcesDirectory" | Where-Object { $_.FullName -Match "en\.lproj\\.+\.html$" } # add installer HTML files
4949
$macosHtmlFiles = @()
5050
if ($macosHtmlEnFiles) {
5151
$macosHtmlEnFiles | ForEach-Object {
@@ -148,12 +148,17 @@ $locJson = @{
148148
}
149149
}
150150
$sourceFile = ($_.FullName | Resolve-Path -Relative)
151+
$lciFile = $sourceFile + ".lci"
151152
if ($continue) {
152-
return @{
153+
$result = @{
153154
SourceFile = $sourceFile
154155
CopyOption = "LangIDOnPath"
155156
OutputPath = $outputPath
156157
}
158+
if (Test-Path $lciFile -PathType Leaf) {
159+
$result["LciFile"] = $lciFile
160+
}
161+
return $result
157162
}
158163
}
159164
)

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"dotnet": "8.0.100-alpha.1.23061.8"
44
},
55
"msbuild-sdks": {
6-
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23110.3",
7-
"Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.23110.3"
6+
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23118.1",
7+
"Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.23118.1"
88
}
99
}

0 commit comments

Comments
 (0)