Skip to content

Commit

Permalink
Prepare for arcade changes that enable testing of meta-packages (#55976)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericstj authored and mmitche committed Jul 26, 2021
1 parent a847376 commit accafed
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<Project>
<ItemGroup>
<!-- We cannot reference the current build of runtime.native.System.IO.Ports because its built across multiple machines -->
<PackageReference Condition="'$(TargetFrameworkIdentifier)' != '.NETFramework'" Include="runtime.native.System.IO.Ports" Version="$(runtimenativeSystemIOPortsVersion)" NoWarn="NU1605" />
</ItemGroup>
</Project>
2 changes: 2 additions & 0 deletions src/libraries/pkg/test/testPackages.proj
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
</AllPackagesFilePath>
<AllPackages Include="@(AllPackagesFilePath->'%(PackageName)')" />

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

0 comments on commit accafed

Please sign in to comment.