-
Notifications
You must be signed in to change notification settings - Fork 517
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
[docs] Document properties for configurations #17940
[docs] Document properties for configurations #17940
Conversation
Fixes xamarin#17738 Addresses the initial issue of just documenting which properties are tied to which configuration. But to make the documentation more helpful, we should provide further context about what exactly these properties mean. However, this isn't trivial as some properties are a bit cryptic..once further info is acquired, it will be integrated in a later revision.
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.
This looks great!
docs/configuration-properties.md
Outdated
|--------------------------------------------------------- |----------------------------------- |--------------------------------------- | | ||
| UseSystemResourceKeys | true | | | ||
| VerifyDependencyInjectionOpenGenericServiceTrimmability | false | | | ||
| DebuggerSupport | false | | | ||
| EnableAssemblyILStripping | true | | | ||
| RuntimeIdentifiers | maccatalyst-x64;maccatalyst-arm64 | TargetFramework == netx.x-maccatalyst | | ||
| RuntimeIdentifiers | osx-x64;osx-arm64 | TargetFramework == netx.x-macos | |
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.
This is really minor, but maybe sort them alphabetically?
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.
LGTM after Rolf's suggestions :)
Fixes #17738
Addresses the initial issue of just documenting which properties are tied to which configuration. But to make the documentation more helpful, we should provide further context about what exactly these properties mean. However, this isn't trivial as some properties are a bit cryptic..once further info is acquired, it will be integrated in a later revision.