-
Notifications
You must be signed in to change notification settings - Fork 528
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
[build] Stop producing Xamarin.Android.Cecil.dll #8489
Merged
Merged
Changes from 8 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
3c0fcf0
[build] Stop producing Xamarin.Android.Cecil.dll
pjcollins 5e4bb72
Bump monodroid
pjcollins 7393a56
Bump monodroid
pjcollins e9724b6
Remove XA Cecil files
pjcollins 9cb3e10
Merge remote-tracking branch 'origin/main' into dev/pjc/noxacecil
pjcollins 119662f
Remove Cecil xaprepare runtime items
pjcollins bba918e
Bump monodroid
pjcollins 6193690
Merge remote-tracking branch 'origin/main' into dev/pjc/noxacecil
pjcollins 1c240b5
Remove CecilSourceDirectory
pjcollins 36cb844
Merge remote-tracking branch 'origin/main' into dev/pjc/noxacecil
pjcollins 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
xamarin/monodroid:main@4d3ede83f699e1d127fed4a18de992819983d715 | ||
xamarin/monodroid:main@c5f1e77bc732dc660090a8d59048f07de846ccd7 | ||
mono/mono:2020-02@6dd9def57ce969ca04a0ecd9ef72c0a8f069112d |
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
74 changes: 0 additions & 74 deletions
74
build-tools/conjure-xamarin-android-cecil/conjure-xamarin-android-cecil.cs
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
build-tools/conjure-xamarin-android-cecil/conjure-xamarin-android-cecil.csproj
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My first concern was that MAUI ships
Mono.Cecil
, will we conflict?So, I downloaded the package and inspected it: https://www.nuget.org/packages/Mono.Cecil/0.11.4
It looks to be strong named and appropriately versioned:
So, what may happen is that if MAUI ships
Mono.Cecil
, we may use theirs or vice-versa if the version & strong name key match. Although, it will likely "just work" if the version is identical.I don't think there is a problem here -- it should work.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The problem used to be with VS extensions. It was never with other products like iOS etc.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.NET framework should know how to respect strong named + versioned assemblies and load new instances of them.
VS Mac would have had an issue on Mono, but I believe it will be out of support and never be able to build .NET 9 projects. VS Mac also made it to .NET 6, in its latest version?