Replies: 1 comment 1 reply
-
@SF-Simon If you want to avoid the repetitive process of restoring tools, compiling and debugging every time you make a change to the code, there are several approaches you can take: Use a development environment that supports hot reload: Use a watch command to monitor changes to the code: $ dotnet watch run --project <path-to-your-project This command will automatically rebuild and restart your application every time you make a change to your code. Use a Continuous Integration/Continuous Deployment (CI/CD) system: Use a tool like nodemon or supervisor: |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, everyone, I downloaded the main version to debug locally. After I modified the code, I used the command to complete the compilation and debugging. This is no problem.
But I modified the MAUI code again, and I don't know how to debug the new code. It's really troublesome to repeatedly execute the above code every time.
Did I not master the skill? Can't there be hot update or other methods?
Please help me simplify this process, thank you.
Beta Was this translation helpful? Give feedback.
All reactions