appbuilder
SubsystemBuilds an app package from a script
-n/--name <AppName>
-v/--version <AppVersion>
-f/--file <InputFile>
-o/--output [outputFile]
./app.bsapp
-r/--resources [resourceDirectory]
Specifies the optional resource directory that will get packaged with the app.
Unset(No Resources will be included)
-i/--interfaces [interfaceName0] [interfaceName1] ...
Unset(All interfaces need to be loaded at runtime + no checks if interfaces are available prior to starting the app)
--minVer [Version]
Unset(All Runtime Versions)
--maxVer [Version]
Unset(All Runtime Versions)
--nologo
Build the App app.bsapp
with all default values from the Script MyApp.bs
.
bs appbuilder -n MyApp -v 1.0.0.0 -f MyApp.bs
Build the App MyApp.bsapp
with the resource folder ./resources
from the Script MyApp.bs
.
bs appbuilder -n MyApp -v 1.0.0.0 -f MyApp.bs -o MyApp.bsapp -r ./resources