Skip to content

Commit 738dea8

Browse files
Update dependencies from https://github.com/dotnet/arcade build 20230218.1 (#46764)
[main] Update dependencies from dotnet/arcade
1 parent ecc1055 commit 738dea8

File tree

4 files changed

+22
-17
lines changed

4 files changed

+22
-17
lines changed

eng/Version.Details.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -302,26 +302,26 @@
302302
<Uri>https://github.com/dotnet/runtime</Uri>
303303
<Sha>c72a060e67453703172be1f886b651f1f89de562</Sha>
304304
</Dependency>
305-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.23110.3">
305+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.23118.1">
306306
<Uri>https://github.com/dotnet/arcade</Uri>
307-
<Sha>96d8be74c39a4765ec919ff9bebf9e0c875fc195</Sha>
307+
<Sha>38d3196e1596eb525367ec8d65fcc1f30a58261c</Sha>
308308
<SourceBuild RepoName="arcade" ManagedOnly="true" />
309309
</Dependency>
310-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="8.0.0-beta.23110.3">
310+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="8.0.0-beta.23118.1">
311311
<Uri>https://github.com/dotnet/arcade</Uri>
312-
<Sha>96d8be74c39a4765ec919ff9bebf9e0c875fc195</Sha>
312+
<Sha>38d3196e1596eb525367ec8d65fcc1f30a58261c</Sha>
313313
</Dependency>
314-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Templating" Version="8.0.0-beta.23110.3">
314+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Templating" Version="8.0.0-beta.23118.1">
315315
<Uri>https://github.com/dotnet/arcade</Uri>
316-
<Sha>96d8be74c39a4765ec919ff9bebf9e0c875fc195</Sha>
316+
<Sha>38d3196e1596eb525367ec8d65fcc1f30a58261c</Sha>
317317
</Dependency>
318-
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="8.0.0-beta.23110.3">
318+
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="8.0.0-beta.23118.1">
319319
<Uri>https://github.com/dotnet/arcade</Uri>
320-
<Sha>96d8be74c39a4765ec919ff9bebf9e0c875fc195</Sha>
320+
<Sha>38d3196e1596eb525367ec8d65fcc1f30a58261c</Sha>
321321
</Dependency>
322-
<Dependency Name="Microsoft.DotNet.RemoteExecutor" Version="8.0.0-beta.23110.3">
322+
<Dependency Name="Microsoft.DotNet.RemoteExecutor" Version="8.0.0-beta.23118.1">
323323
<Uri>https://github.com/dotnet/arcade</Uri>
324-
<Sha>96d8be74c39a4765ec919ff9bebf9e0c875fc195</Sha>
324+
<Sha>38d3196e1596eb525367ec8d65fcc1f30a58261c</Sha>
325325
</Dependency>
326326
</ToolsetDependencies>
327327
</Dependencies>

eng/Versions.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,9 @@
135135
<MicrosoftEntityFrameworkCoreVersion>8.0.0-preview.2.23122.1</MicrosoftEntityFrameworkCoreVersion>
136136
<MicrosoftEntityFrameworkCoreDesignVersion>8.0.0-preview.2.23122.1</MicrosoftEntityFrameworkCoreDesignVersion>
137137
<!-- Packages from dotnet/arcade -->
138-
<MicrosoftDotNetBuildTasksInstallersVersion>8.0.0-beta.23110.3</MicrosoftDotNetBuildTasksInstallersVersion>
139-
<MicrosoftDotNetBuildTasksTemplatingVersion>8.0.0-beta.23110.3</MicrosoftDotNetBuildTasksTemplatingVersion>
140-
<MicrosoftDotNetRemoteExecutorVersion>8.0.0-beta.23110.3</MicrosoftDotNetRemoteExecutorVersion>
138+
<MicrosoftDotNetBuildTasksInstallersVersion>8.0.0-beta.23118.1</MicrosoftDotNetBuildTasksInstallersVersion>
139+
<MicrosoftDotNetBuildTasksTemplatingVersion>8.0.0-beta.23118.1</MicrosoftDotNetBuildTasksTemplatingVersion>
140+
<MicrosoftDotNetRemoteExecutorVersion>8.0.0-beta.23118.1</MicrosoftDotNetRemoteExecutorVersion>
141141
<!-- Packages from dotnet/source-build-externals -->
142142
<MicrosoftSourceBuildIntermediatesourcebuildexternalsVersion>8.0.0-alpha.1.23110.2</MicrosoftSourceBuildIntermediatesourcebuildexternalsVersion>
143143
<!-- Packages from dotnet/xdt -->

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
@@ -27,7 +27,7 @@
2727
},
2828
"msbuild-sdks": {
2929
"Yarn.MSBuild": "1.22.10",
30-
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23110.3",
31-
"Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.23110.3"
30+
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23118.1",
31+
"Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.23118.1"
3232
}
3333
}

0 commit comments

Comments
 (0)