[Symbols] Add support for the new Xcode 15 Symbols framework.#18642
[Symbols] Add support for the new Xcode 15 Symbols framework.#18642mandel-macaque merged 15 commits intodotnet:net8.0-xcode15from
Conversation
|
Leaving as draft until we land the xcode15 support. But good to keep the record straight. |
|
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
| interface NSSymbolEffectOptions : NSCopying, NSSecureCoding { | ||
| [Static] | ||
| [Export ("options")] | ||
| NSSymbolEffectOptions CreateOptions (); |
There was a problem hiding this comment.
I think it sounds better if you remove Options:
| NSSymbolEffectOptions CreateOptions (); | |
| NSSymbolEffectOptions Create (); |
|
|
||
| [Static] | ||
| [Export ("optionsWithRepeating")] | ||
| NSSymbolEffectOptions CreateOptionsWithRepeating (); |
There was a problem hiding this comment.
Same, but also removing With:
| NSSymbolEffectOptions CreateOptionsWithRepeating (); | |
| NSSymbolEffectOptions CreateRepeating (); |
and the same for the other Get and Create methods here.
This matches the Swift names better (and also sounds better).
| NSSymbolPulseEffect CreateEffect (); | ||
|
|
||
| [Export ("effectWithByLayer")] | ||
| NSSymbolPulseEffect GetEffectWithByLayer (); |
There was a problem hiding this comment.
These are properties in Swift (https://developer.apple.com/documentation/symbols/pulsesymboleffect/4197828-bylayer)
| NSSymbolPulseEffect GetEffectWithByLayer (); | |
| NSSymbolPulseEffect ByLayer { get; } |
| [Export ("effectWithByLayer")] | ||
| NSSymbolBounceEffect GetEffectWithByLayer (); | ||
|
|
||
| [Export ("effectWithWholeSymbol")] | ||
| NSSymbolBounceEffect GetEffectWithWholeSymbol (); |
There was a problem hiding this comment.
Same, these can be properties and named better.
| NSSymbolVariableColorEffect CreateEffect (); | ||
|
|
||
| [Export ("effectWithIterative")] | ||
| NSSymbolVariableColorEffect GetEffectWithIterative (); |
There was a problem hiding this comment.
Same, simplified and property:
| NSSymbolVariableColorEffect GetEffectWithIterative (); | |
| NSSymbolVariableColorEffect Iterative { get; } |
| interface NSSymbolVariableColorEffect { | ||
| [Static] | ||
| [Export ("effect")] | ||
| NSSymbolVariableColorEffect CreateEffect (); |
There was a problem hiding this comment.
| NSSymbolVariableColorEffect CreateEffect (); | |
| NSSymbolVariableColorEffect Create (); |
| interface NSSymbolScaleEffect { | ||
| [Static] | ||
| [Export ("effect")] | ||
| NSSymbolScaleEffect CreateEffect (); |
There was a problem hiding this comment.
| NSSymbolScaleEffect CreateEffect (); | |
| NSSymbolScaleEffect Create (); |
| [Export ("effectWithByLayer")] | ||
| NSSymbolScaleEffect GetEffectWithByLayer (); | ||
|
|
||
| [Export ("effectWithWholeSymbol")] | ||
| NSSymbolScaleEffect GetEffectWithWholeSymbol (); |
| interface NSSymbolAutomaticContentTransition { | ||
| [Static] | ||
| [Export ("transition")] | ||
| NSSymbolAutomaticContentTransition CreateTransition (); |
There was a problem hiding this comment.
I stopped suggesting, they all follow the same pattern :)
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Co-authored-by: Rolf Bjarne Kvinge <rolf@xamarin.com>
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Co-authored-by: Rolf Bjarne Kvinge <rolf@xamarin.com>
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Co-authored-by: Alex Soto <alex@alexsoto.me>
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Co-authored-by: Alex Soto <alex@alexsoto.me>
💻 [CI Build] Windows Integration Tests passed 💻✅ All Windows Integration Tests passed. Pipeline on Agent |
📚 [PR Build] Artifacts 📚Packages generatedView packagesPipeline on Agent |
💻 [PR Build] Tests on macOS M1 - Mac Ventura (13.0) passed 💻✅ All tests on macOS M1 - Mac Ventura (13.0) passed. Pipeline on Agent |
💻 [PR Build] Tests on macOS M1 - Mac Big Sur (11.5) passed 💻✅ All tests on macOS M1 - Mac Big Sur (11.5) passed. Pipeline on Agent |
✅ API diff for current PR / commitLegacy Xamarin (No breaking changes).NET (No breaking changes)❗ API diff vs stable (Breaking changes)Legacy Xamarin (:heavy_exclamation_mark: Breaking changes :heavy_exclamation_mark:)
.NET (:heavy_exclamation_mark: Breaking changes :heavy_exclamation_mark:)
ℹ️ Generator diffGenerator Diff: vsdrops (html) vsdrops (raw diff) gist (raw diff) - Please review changes) Pipeline on Agent |
🔥 [CI Build] Test results 🔥Test results❌ Tests failed on VSTS: simulator tests 0 tests crashed, 2 tests failed, 235 tests passed. Failures❌ framework testsDetails
Html Report (VSDrops) Download ❌ mononative testsDetails
Html Report (VSDrops) Download Successes✅ bcl: All 69 tests passed. Html Report (VSDrops) Download Pipeline on Agent |
|
Failures are un related. |
No description provided.