forked from xamarin/xamarin-macios
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[docs] Document properties for configurations
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.
- Loading branch information
1 parent
0ab9924
commit 57029d3
Showing
1 changed file
with
26 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Debug vs. Release Configuration Property Documentation | ||
======================================================== | ||
|
||
There are a number of properties that are contingent upon the configuration setting chosen. The properties and their corresponding values are documented here to provide transparency and enable users to better create custom configuration modes as well.<br /> | ||
|
||
### Release Configuration | ||
|
||
| **Property** | **Default value** | **Condition?** | | ||
|--------------------------------------------------------- |----------------------------------- |--------------------------------------- | | ||
| 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 | | ||
<br /> | ||
|
||
### Debug Configuration | ||
|
||
| **Property** | **Default value** | **Condition?** | | ||
|-------------------------- |------------------- |--------------------------------------- | | ||
| UseSystemResourceKeys | false | | | ||
| CodesignDisableTimestamp | true | | | ||
| DebuggerSupport | true | | | ||
| RuntimeIdentifiers | maccatalyst-x64 | TargetFramework == netx.x-maccatalyst | | ||
| RuntimeIdentifiers | osx-x64 | TargetFramework == netx.x-macos | |