Using VS 2013 Update 4, Tools for Apache Cordova 3.0...
I\'m preparing a package for upload to the windows phone store and could use help getting VS to write out the
I haven't done a Windows Phone app yet, but it might be same issue as with Android and iOS app builds. Is your "Attach..." dropdown selected to Device? For Android and iOS builds, it will not create the store package unless you select Device.
Currently creating appx bundle from Create App Package wizard is not supported. As a workaround you can either open native project and use Create App Package wizard to create appx bundle or you can modify the jsproj file to add property to indicate msbuild that you want to create appx bundle always.
Workaround:
OR
1.) Another way to create appx bundle is to modify the jsproj (project file) by adding following properties and then building the project.
<AppxBundle>Always</AppxBundle>
<AppxBundlePlatforms>neutral</AppxBundlePlatforms>
like
<PropertyGroup>
<TargetPlatformIdentifier>Windows</TargetPlatformIdentifier>
<TargetPlatformVersion>8.1</TargetPlatformVersion>
<RequiredPlatformVersion>8.1</RequiredPlatformVersion>
<MinimumVisualStudioVersion>12.0</MinimumVisualStudioVersion>
<DefaultLanguage>en-US</DefaultLanguage>
<PackageCertificateKeyFile>CordovaApp_TemporaryKey.pfx</PackageCertificateKeyFile>
<AppxAutoIncrementPackageRevision>True</AppxAutoIncrementPackageRevision>
<AppxBundle>Always</AppxBundle>
<AppxBundlePlatforms>neutral</AppxBundlePlatforms>
</PropertyGroup>