You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- Mark all assemblies to be linked for AndroidLinkMode=Full -->
22
-
<ResolvedFileToPublish
23
-
Update="@(ResolvedFileToPublish)"
24
-
Condition=" '$(AndroidLinkMode)' == 'Full' and '%(ResolvedFileToPublish.Extension)' == '.dll' and '%(ResolvedFileToPublish.AssetType)' != 'native' "
25
-
TrimMode="link"
26
-
/>
27
28
<!-- TODO: remove setting the trim mode here, once the support packages are updated to NET6 and compatability packages not needed -->
28
29
<ResolvedFileToPublish
29
30
Condition=" '$(AndroidLinkMode)' == 'SdkOnly' and ( $([System.String]::Copy(%(Filename)).StartsWith ('Xamarin.AndroidX.')) or $([System.String]::Copy(%(Filename)).StartsWith ('Xamarin.Android.Support.')) or $([System.String]::Copy(%(Filename)).StartsWith ('Xamarin.Google.')) or $([System.String]::Copy(%(Filename)).StartsWith ('Xamarin.GooglePlayServices.')) ) ">
30
31
<TrimMode>link</TrimMode>
31
32
</ResolvedFileToPublish>
32
-
<!-- Mark our entry assembly as a root assembly. -->
33
-
<TrimmerRootAssemblyInclude="@(ResolvedFileToPublish)"Condition=" '%(ResolvedFileToPublish.Filename)' == '$(AssemblyName)' and '%(ResolvedFileToPublish.Extension)' == '.dll' " />
34
-
</ItemGroup>
35
-
<PropertyGroup>
36
-
<!-- make the output verbose to see what the linker is doing. FIXME: make dependent upon verbosity level -->
0 commit comments