Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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