Is there a way to package C++ distributable as MSIX package #3646
Replies: 3 comments 7 replies
-
The Visual C++ Runtime versions 11, 12 and 14 have packages. You can find documentation about this here. Don't worry about the .appx extension, these are what you want. The extension can be thought of as the package can install on older versions of Windows 10. |
Beta Was this translation helpful? Give feedback.
-
I'm having the same problem here :/ |
Beta Was this translation helpful? Give feedback.
-
Thanks, I expected it to be the opposite actually, since VC14.0 doesn't have uwp in the name, but
.UWPDesktop has,
I'll try tomorrow then, since it is past midnight here
Sent from Outlook for Android<https://aka.ms/AAb9ysg>
…________________________________
From: DarranRowe ***@***.***>
Sent: Wednesday, May 22, 2024 12:08:48 AM
To: microsoft/WindowsAppSDK ***@***.***>
Cc: Eyad Ahmed ***@***.***>; Comment ***@***.***>
Subject: Re: [microsoft/WindowsAppSDK] Is there a way to package C++ distributable as MSIX package (Discussion #3646)
Microsoft.VCLibs.1400.00 wouldn't work. That is for UWP applications and the library base names have the _app suffix (vcruntime140_app.dll as an example). The libraries wouldn't satisfy applications or libraries built for desktop.
—
Reply to this email directly, view it on GitHub<#3646 (reply in thread)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AGC6KLJXF4TVHUNO7IRSLN3ZDOZWBAVCNFSM6AAAAAAYMWEBNWVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4TKMJTG4ZDC>.
You are receiving this because you commented.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
We have a WinAppSDK 1.3 based msix package for our application. Our application uses some C++ library that require C++ redistributables to be installed on the OS for it to work. I was searching for MSIX packages for the same but could not find them.
I remember when WinAppSDK had two project solution, there were C++ UWP redistributable MSIX packages as dependencies.
Is there any place I can find the equivalent MSIX packages for C++ redistributables (https://learn.microsoft.com/en-US/cpp/windows/latest-supported-vc-redist?view=msvc-170#visual-studio-2015-2017-2019-and-2022) or is there a way to create a MSIX package out of those redistributables.
Beta Was this translation helpful? Give feedback.
All reactions