Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[main] Update dependencies from dotnet/linker #78020

Merged
merged 16 commits into from
Dec 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
Expand Up @@ -258,9 +258,9 @@
<Uri>https://github.com/dotnet/runtime</Uri>
<Sha>e6700ea21bbb17ca5058801259bc2d05957814d4</Sha>
</Dependency>
<Dependency Name="Microsoft.NET.ILLink.Tasks" Version="7.0.100-1.22552.1">
<Dependency Name="Microsoft.NET.ILLink.Tasks" Version="7.0.100-1.22602.1">
<Uri>https://github.com/dotnet/linker</Uri>
<Sha>391ac60bbfb2c618b82f08af728d2d4d259d584e</Sha>
<Sha>da244b780a1d1755cb7cb389df599fe650726892</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.XHarness.TestRunners.Common" Version="1.0.0-prerelease.22531.1">
<Uri>https://github.com/dotnet/xharness</Uri>
Expand Down
2 changes: 1 addition & 1 deletion eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@
<!-- Docs -->
<MicrosoftPrivateIntellisenseVersion>7.0.0-preview-20221010.1</MicrosoftPrivateIntellisenseVersion>
<!-- ILLink -->
<MicrosoftNETILLinkTasksVersion>7.0.100-1.22552.1</MicrosoftNETILLinkTasksVersion>
<MicrosoftNETILLinkTasksVersion>7.0.100-1.22602.1</MicrosoftNETILLinkTasksVersion>
<MicrosoftNETILLinkAnalyzerPackageVersion>$(MicrosoftNETILLinkTasksVersion)</MicrosoftNETILLinkAnalyzerPackageVersion>
<!-- ICU -->
<MicrosoftNETCoreRuntimeICUTransportVersion>8.0.0-alpha.1.22553.1</MicrosoftNETCoreRuntimeICUTransportVersion>
Expand Down
11 changes: 11 additions & 0 deletions eng/testing/tests.mobile.targets
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,17 @@
<UseNativeHttpHandler Condition="'$(UseNativeHttpHandler)' == ''">false</UseNativeHttpHandler>
</PropertyGroup>

<!-- 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>
</TrimmerRootAssembly>
</ItemGroup>
</Target>

<PropertyGroup>
<AdditionalXHarnessArguments Condition="'$(ExpectedExitCode)' != ''">$(AdditionalXHarnessArguments) --expected-exit-code $(ExpectedExitCode)</AdditionalXHarnessArguments>
</PropertyGroup>
Expand Down