-
Notifications
You must be signed in to change notification settings - Fork 533
Simplifying the Build System
Dean Ellis edited this page Nov 19, 2024
·
3 revisions
We need to reduce the complexity of our build system as we move towards .Net 10 Android. One of the issues we have is passing data between tasks which happen at various different times in the build. It would be nice to be able to reduce or rework these so they can share the same data without having to make use of RegisterTaskObject.
This might well mean we write intermediate data to the $(IntermediateOutputDir)
so it can be consumed by
a task later on the the build, rather than trying to do the work in place.
This is what this task is currently responsible for
- Generating Java source code for C# calls.
- Generating the final AndroidManifest.xml
- A ton of stuff to do with packaging and startup code (grendel can you fill this bit in please).
- APK Tests on the Hyper V Emulator
- Design Time Build System
- Profile MSBuild Tasks
- Diagnose Fast Deployment Issues
- Preview layout XML files with Android Studio
- Documentation