Since #73095, we are now building the host subset when building clr. However, the host subset includes a few test directories:
|
<DefaultHostSubsets Condition="'$(DotNetBuildFromSource)' != 'true'">$(DefaultHostSubsets)+host.tests</DefaultHostSubsets> |
and
We should refactor our build so we don't need to build these tests when running a "normal" dev build: .\build.cmd libs+clr -rc Release.
Since #73095, we are now building the
hostsubset when buildingclr. However, thehostsubset includes a few test directories:runtime/eng/Subsets.props
Line 73 in f244adb
and
runtime/src/native/corehost/CMakeLists.txt
Line 34 in f244adb
We should refactor our build so we don't need to build these tests when running a "normal" dev build:
.\build.cmd libs+clr -rc Release.