-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MONO][WASM] Fix System.ComponentModel.TypeConverter tests by adding …
…missing ILLink dependencies (#50645) Added missing ILLink descriptors for TypeConverter tests.
- Loading branch information
Nathan Ricci
authored
Apr 15, 2021
1 parent
2aa0348
commit c2f2a1c
Showing
3 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
src/libraries/System.ComponentModel.TypeConverter/tests/ILLink.Descriptors.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<!-- This is file is to tell the linker not to remove these assemblies/types/namespace | ||
when aggressive trimming is enabled. --> | ||
<linker> | ||
<assembly fullname="TestUtilities"> | ||
<namespace fullname="System" /> | ||
<type fullname="System.PlatformDetection" /> | ||
</assembly> | ||
<assembly fullname="Castle.Core"> | ||
<namespace fullname="Castle.DynamicProxy" /> | ||
<type fullname="Castle.DynamicProxy.Internal.CompositionInvocation" /> | ||
<type fullname="Castle.DynamicProxy.Internal.AbstractInvocation" /> | ||
<type fullname="Castle.DynamicProxy.Internal.InheritanceInvocation" /> | ||
</assembly> | ||
<assembly fullname="Moq"> | ||
<type fullname="Moq.Internals.InterfaceProxy"> | ||
<method signature="System.Void .ctor()" /> | ||
</type> | ||
</assembly> | ||
</linker> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters