-
-
Notifications
You must be signed in to change notification settings - Fork 140
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
Default Test and Run mode #938
Comments
Sounds like a good PR. Doesn't break existing functionality. Go for it. |
Co-authored-by: Chris Pulman <[email protected]>
@glennawatson @ChrisPulman |
I guess I question this a bit - if ModeDetector is slow, why don't we just fix it? That seems better than trying to make "official workarounds" for our own code! |
Probably can make it faster for newer SDK style applications .net 6 and above, since there are now "UseWindowsForms" and "UseWPF" and "UseMaui" msbuild properties. Older framework applications we still support have no such joy. |
I'll make an issue so we can target those properties at the very least to give the user a speed boost in those environments. |
|
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Is your feature request related to a problem? Please describe.
Kent Boogaart in the "You, I, and ReactiveUI" book recommends overriding the
ModeDetector
in order to boost its performance. But implementing the sameCustomModeDetector
in every project is a little bit cumbersome.Describe the solution you'd like
The default implementation of the Run and Test mode.
Example:
Usage in the Run environment:
Usage in the Test environment:
I can make a PR if you like this solution.
The text was updated successfully, but these errors were encountered: