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 (#3177)
[main] Update dependencies from dotnet/arcade
- Analyzer fix
- Update to net8
- Update import order
- Add net8 handling
- Analyzer fixes
- Merge branch 'main' into darc-main-328ee272-9fb8-4717-bae0-5575b14d7744
- More analyzer fixes
- Port fix from runtime
- Update failing test
- verbose test
- Fix formatting
- Fix the task to look for net8.0 location.
Revert test changes.
- Workaround a possible issue in the new SDK
$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