Note: MAUI and VS just had an update, and as usual, this breaks all my projects builds. So, I cannot build this project presently (ResolveTargetingPackAssets tasks failed). Things will likely fix magically as reboots happen. So feel free to pull this down and check it yourself, or it may be a few days before I can vouch for the code.
The InitOptions now has an IsDebug option that can be set.
This overrides what the SystemInfo object attempts to determine (which currently does not work).
Future work would be to replace Assembly.GetEntryAssembly (which returns null) with Assembly.GetExecutingAssembly (which will correctly return the assembly). That change is not in this PR.
Note: MAUI and VS just had an update, and as usual, this breaks all my projects builds. So, I cannot build this project presently (
ResolveTargetingPackAssets
tasks failed). Things will likely fix magically as reboots happen. So feel free to pull this down and check it yourself, or it may be a few days before I can vouch for the code.The
InitOptions
now has anIsDebug
option that can be set. This overrides what theSystemInfo
object attempts to determine (which currently does not work).Future work would be to replace
Assembly.GetEntryAssembly
(which returns null) withAssembly.GetExecutingAssembly
(which will correctly return the assembly). That change is not in this PR.