How to Create a runtime installer for only x64 systems for a production app? Without arm and x86 #2272
Replies: 2 comments 14 replies
-
what I did was extracting the redistributable package, then I took the .msix files and did this ` #include <winrt/Windows.ApplicationModel.h> #pragma comment(lib, "windowsapp") using namespace winrt; HRESULT AddPackage(const Uri& packageUri)
} HRESULT ProvisionPackage(const wchar_t* p_strPackageFamilyName)
} int wmain(int argc, wchar_t *argv[])
} ... it's still just a test, but it seems to work. |
Beta Was this translation helpful? Give feedback.
-
I think you should file an issue of Bug. these two "x86 msix(s) files" don't make sense in an "explicit x64 installer". |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
How to Create a runtime installer for only x64 systems for a production app? Without arm and x86 to reduce size of the installer.
Beta Was this translation helpful? Give feedback.
All reactions