-
Notifications
You must be signed in to change notification settings - Fork 569
[TrimmableTypeMap] Replace startup hook with direct TypeMapLoader.Initialize() call #11197
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
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
bb9ac8b
Replace startup hook with direct TypeMapLoader.Initialize() call
simonrozsival 3bbf004
Address PR review comments
simonrozsival dcf4ef9
Extract TypeMapLoader.Initialize() into separate NoInlining method
simonrozsival ce02913
Make TrimmableTypeMap class public
simonrozsival File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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
16 changes: 16 additions & 0 deletions
16
src/Microsoft.Android.TypeMaps.Ref/Microsoft.Android.TypeMaps.Ref.csproj
This file contains hidden or 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,16 @@ | ||
| <Project Sdk="Microsoft.NET.Sdk"> | ||
| <Import Project="..\..\Configuration.props" /> | ||
|
|
||
| <PropertyGroup> | ||
| <TargetFramework>$(DotNetTargetFramework)</TargetFramework> | ||
| <AssemblyName>_Microsoft.Android.TypeMaps</AssemblyName> | ||
| <RootNamespace>Microsoft.Android.Runtime</RootNamespace> | ||
| <Nullable>enable</Nullable> | ||
| <!-- ProduceOnlyReferenceAssembly (not ProduceReferenceAssembly) — we only need the ref assembly. | ||
| The real implementation is generated at app build time by the typemap generator. --> | ||
| <ProduceOnlyReferenceAssembly>true</ProduceOnlyReferenceAssembly> | ||
| <!-- Do NOT sign — the generated implementation assembly (emitted by PEAssemblyBuilder) | ||
| is unsigned, so the ref assembly must match to avoid identity mismatch. --> | ||
| </PropertyGroup> | ||
|
|
||
| </Project> | ||
This file contains hidden or 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,17 @@ | ||
| using System; | ||
|
|
||
| namespace Microsoft.Android.Runtime; | ||
|
|
||
| /// <summary> | ||
| /// Entry point for typemap initialization. The implementation is generated at build time | ||
| /// by the trimmable typemap generator, replacing this reference assembly. | ||
| /// </summary> | ||
| public static class TypeMapLoader | ||
| { | ||
| /// <summary> | ||
| /// Initializes the trimmable typemap by constructing the type mapping dictionaries | ||
| /// and calling <c>TrimmableTypeMap.Initialize()</c>. | ||
| /// </summary> | ||
| public static void Initialize () => throw new NotImplementedException ( | ||
| "This is a reference assembly stub. The real implementation is generated at build time."); | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.