Skip to content

Commit b29d06c

Browse files
authored
Prepare for arcade changes that enable testing of meta-packages (#55976)
1 parent f100379 commit b29d06c

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<Project>
2+
<ItemGroup>
3+
<!-- We cannot reference the current build of runtime.native.System.IO.Ports because its built across multiple machines -->
4+
<PackageReference Condition="'$(TargetFrameworkIdentifier)' != '.NETFramework'" Include="runtime.native.System.IO.Ports" Version="$(runtimenativeSystemIOPortsVersion)" NoWarn="NU1605" />
5+
</ItemGroup>
6+
</Project>

src/libraries/pkg/test/testPackages.proj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
</AllPackagesFilePath>
3434
<AllPackages Include="@(AllPackagesFilePath->'%(PackageName)')" />
3535

36+
<!-- runtime.native.System.IO.Ports requires all runtime legs to be built in order to test -->
37+
<ExcludePackages Include="runtime.native.System.IO.Ports" />
3638
<ExcludePackages Condition="'$(PackagesToTest)' != ''" Include="@(AllPackages)" Exclude="@(PackagesToTest)" />
3739
<TestPackages Include="@(AllPackages)" Exclude="@(ExcludePackages)" />
3840
<TestPackagesPath Include="@(TestPackages->'%(PackagePath)')" />

0 commit comments

Comments
 (0)