build method

Future<void> build()

Execute with the msix:build command

Implementation

Future<void> build() async {
  await _initConfig();
  await _buildMsixFiles();
  String msixStyledPath = File(_msixOutputPath).parent.path.blue.emphasized;
  _logger
      .write('${'unpackaged msix files created in: '.green}$msixStyledPath');
}