Normally if you wanted to build with flutter with a different entrypoint we would use:
flutter build windows -t lib\entrypoint\staging.dart
However it is not possible to do this with "msix:create"
flutter pub run msix:create -t lib\entrypoint\staging.dart # error
Can we update the command so that all unused arguments are passed on to the flutter build. Or alternatively, have a --build-args flag that can be passed onto flutter. e.g,
flutter pub run msix:create --build-args "-t lib\entrypoint\staging.dart"
:speech_balloon: Description
Normally if you wanted to build with flutter with a different entrypoint we would use:
However it is not possible to do this with "msix:create"
Can we update the command so that all unused arguments are passed on to the flutter build. Or alternatively, have a
--build-args
flag that can be passed onto flutter. e.g,:question: Platform
All platforms