Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
890d44f
Update dependencies from https://github.com/dotnet/linker build 20221…
dotnet-maestro[bot] Nov 8, 2022
84b6951
Update dependencies from https://github.com/dotnet/linker build 20221…
dotnet-maestro[bot] Nov 9, 2022
3fb584a
Update dependencies from https://github.com/dotnet/linker build 20221…
dotnet-maestro[bot] Nov 10, 2022
499921b
Update dependencies from https://github.com/dotnet/linker build 20221…
dotnet-maestro[bot] Nov 11, 2022
8cb1984
Update dependencies from https://github.com/dotnet/linker build 20221…
dotnet-maestro[bot] Nov 15, 2022
38f5d6b
Update dependencies from https://github.com/dotnet/linker build 20221…
dotnet-maestro[bot] Nov 17, 2022
a27ca78
Update dependencies from https://github.com/dotnet/linker build 20221…
dotnet-maestro[bot] Nov 22, 2022
4e049c4
Update dependencies from https://github.com/dotnet/linker build 20221…
dotnet-maestro[bot] Nov 23, 2022
943a323
Update dependencies from https://github.com/dotnet/linker build 20221…
dotnet-maestro[bot] Nov 24, 2022
b126b6c
Update dependencies from https://github.com/dotnet/linker build 20221…
dotnet-maestro[bot] Nov 25, 2022
01ef2b0
Root entire intermediate assembly in mobile tests
sbomer Nov 28, 2022
de28bb3
Update dependencies from https://github.com/dotnet/linker build 20221…
dotnet-maestro[bot] Nov 29, 2022
42b0905
Fix trimmingTests
sbomer Nov 29, 2022
d96c0ff
Update dependencies from https://github.com/dotnet/linker build 20221…
dotnet-maestro[bot] Nov 30, 2022
60016c6
Update dependencies from https://github.com/dotnet/linker build 20221…
dotnet-maestro[bot] Dec 1, 2022
fb43d1a
Update dependencies from https://github.com/dotnet/linker build 20221…
dotnet-maestro[bot] Dec 2, 2022
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
Prev Previous commit
Next Next commit
Fix trimmingTests
  • Loading branch information
sbomer committed Nov 29, 2022
commit 42b09053e921a22e0737e4197d61e3ef36cf6387
7 changes: 4 additions & 3 deletions eng/testing/tests.mobile.targets
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,10 @@
<UseNativeHttpHandler Condition="'$(UseNativeHttpHandler)' == ''">false</UseNativeHttpHandler>
</PropertyGroup>

<!-- When trimming a non-exe project, the SDK settings root only the entry point.
We trim test projects that have no entry point, so root the whole intermediate assembly. -->
<Target Name="RootEntireIntermediateAssembly" AfterTargets="PrepareForILLink">
<!-- When trimming non-exe projects, root the whole intermediate assembly.
The SDK settings root only the entry point by default. These targets are used not only for standard
console apps, but also for test projects without an entry point. -->
<Target Name="RootEntireIntermediateAssembly" AfterTargets="PrepareForILLink" Condition="'$(OutputType)' != 'Exe'">
<ItemGroup>
<TrimmerRootAssembly Condition="'%(Identity)' == '@(IntermediateAssembly)'">
<RootMode>all</RootMode>
Expand Down