forked from xamarin/xamarin-macios
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[dotnet] Implement support for our different link modes. (xamarin#9460)
* [mmp] Rename LinkMode.All to LinkMode.Full. So that we can continue to use Enum.Parse<LinkMode> to parse 'Full' as the link mode. * [dotnet] Implement support for our different link modes. Tell the managed linker what to do with each input assembly depending the selected link mode (link all, link sdk, don't link).
- Loading branch information
1 parent
ccdd577
commit d7ab847
Showing
4 changed files
with
24 additions
and
4 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
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
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ namespace Xamarin.Bundler { | |
public enum LinkMode { | ||
None, | ||
SDKOnly, | ||
All, | ||
Full, | ||
Platform, | ||
} | ||
} |
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