I have a HTML/JavaScript project that runs inside a NodeJS wrapper (bundled by Electron).
An .exe file is then created from the bundle, using node-enigmavirtualbox package, resulting in a portable Windows Desktop Application.
I am using Windows 7 myself, but the App runs on 7, 8, 8.1 and 10 (tested) and my intention is to distribute for all of these platforms.
I am now trying to submit this Application to the Windows Store, where I am required to upload my code as packages in specific formats (.xap, .appx, .appxbundle, .appxupload).
I have already an account at Windows Dev Center and reserved a name for my App.
How can I import my .exe file into Visual Studio and generate the app packages from it that are required for Windows Store?
I have tried extracting my .exe file and opening the contents in Visual Studio, but the Project > Store > Create App Packages menu is greyed-out.
I am referring to this guide https://msdn.microsoft.com/en-us/library/windows/apps/hh454036.aspx There is supposed to be a tool called Project Centennial that takes care of this, but I haven't been able to find more info about this.
