We are seeing a new prebuilt package reported in source-build, Microsoft.DotNet.CilStrip.Sources.7.0.0-beta.22214.1.
It seems like AssemblyStripper.csproj is being picked up by the **/*.csproj pattern in tasks.proj and it is referencing the prebuilt:
|
<ItemGroup> |
|
<ProjectReference Include="$(MSBuildThisFileDirectory)**\*.csproj" /> |
|
|
|
<!-- These projects do not need to be built during source-build. --> |
|
<!-- For example, they may take dependencies on pre-built packages that aren't build-from-source. e.g. 'Microsoft.DotNet.CilStrip.Sources' --> |
|
<ProjectReference Remove="MonoTargetsTasks\MonoTargetsTasks.csproj" |
|
Condition="'$(DotNetBuildFromSource)' == 'true'" /> |
|
</ItemGroup> |
This target should instead ignore all .csproj files under MonoTargetsTasks/.
We are seeing a new prebuilt package reported in source-build,
Microsoft.DotNet.CilStrip.Sources.7.0.0-beta.22214.1.It seems like
AssemblyStripper.csprojis being picked up by the**/*.csprojpattern intasks.projand it is referencing the prebuilt:runtime/src/tasks/tasks.proj
Lines 2 to 9 in f246a5a
This target should instead ignore all
.csprojfiles underMonoTargetsTasks/.