You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[main] Update dependencies from dotnet/arcade (#502)
[main] Update dependencies from dotnet/arcade
- Coherency Updates:
- Microsoft.SourceLink.GitHub: from 1.2.0-beta-23053-01 to 1.2.0-beta-23073-01 (parent: Microsoft.DotNet.Arcade.Sdk)
- Update TFM to net8.0 to eliminate prebuilts
- Accept Microsoft.NETFramework.ReferenceAssemblies/1.0.3 as a known prebuilt
$jsonWinformsTemplateFiles=Get-ChildItem-Recurse -Path "$SourcesDirectory"|Where-Object { $_.FullName-Match"en\\strings\.json" } # current winforms pattern
35
35
36
36
$wxlFiles=Get-ChildItem-Recurse -Path "$SourcesDirectory"|Where-Object { $_.FullName-Match"\\.+\.wxl"-And-Not( $_.Directory.Name-Match"\d{4}" ) } # localized files live in four digit lang ID directories; this excludes them
37
+
if (-not$wxlFiles) {
38
+
$wxlEnFiles=Get-ChildItem-Recurse -Path "$SourcesDirectory"|Where-Object { $_.FullName-Match"\\1033\\.+\.wxl" } # pick up en files (1033 = en) specifically so we can copy them to use as the neutral xlf files
0 commit comments