I have Windows Phone 8.1 project (not Silverlight). I want create app package using makeappx.exe without Visual Studio. Using command
C:\Program Files (x86)\Windows Kits\8.1\bin\x64>makeappx.exe pack /v /l
/d C:\MyAppProjectFolder\
/p C:\MyAppProjectFolder\MyApp.appx
But had errors:
MakeAppx : error: You must include a valid app package manifest file named AppxManifest.xml in the source.
MakeAppx : error: Package creation failed.
MakeAppx : error: 0x80080203 - The specified package format is not valid: The file is not a valid app package because it
The project doesn't contains AppxManifest.xml
file. But contains Package.appxmanifest
file. I must create AppxManifest.xml
mannualy?
I can't find information about this in MSDN pages.