File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change 105
105
106
106
<ItemGroup Condition =" '$(TargetOS)' == 'iOS' or '$(TargetOS)' == 'tvOS'" >
107
107
<!-- Find all directories named *.app and strip the trailing slash -->
108
- <_appBundleFiles Include =" $(TestArchiveTestsRoot)**/*" />
109
- <_appBundleDirs Include =" @(_appBundleFiles->'%(RootDir)%(Directory)'->Distinct())" />
110
- <XHarnessAppFolderToTest Include =" @(_appBundleDirs->Replace(" .app/" , " .app" ))"
111
- Condition =" $([System.Text.RegularExpressions.Regex]::IsMatch(%(Identity), '\.app/?$'))" >
108
+ <XHarnessAppFolderToTest Include =" $([System.IO.Directory]::GetDirectories('$(TestArchiveTestsRoot)', '*.app', System.IO.SearchOption.AllDirectories))" >
112
109
<Targets Condition =" '$(TargetArchitecture)' == 'arm'" >ios-device</Targets >
113
110
<Targets Condition =" '$(TargetArchitecture)' == 'arm64'" >ios-device</Targets >
114
111
<Targets Condition =" '$(TargetArchitecture)' == 'x64'" >ios-simulator-64</Targets >
You can’t perform that action at this time.
0 commit comments