Packaging a JavaScript Metro Style App in Windows 8
The Metro Apps documentation uses a C# as an example. Just so we all know, we can compile a deliverable of our Metro Style JavaScript application by right-licking the *project* and picking "Store", "Create an App Package". We can now configure a few settings for the application, as the version number. Remember to set the solution to deploy as "Release" instead of "Debug" so the final files don't have "_debug" names. Also, make sure you customized the "PackageName" field on the manifest, under the "Packaging" tab, or the id will be used later by validation tools, and it would be harder to figure out which is our app. There will be typically four files: - Batchfile with PowerShell install script - Actual .appx solution - .cer certificate base on the compiled machine name - There will also be a .appxupload file we can later submit over to the app store . The "Add-AppxDevPackage.bat" scrip...