Reputation: 1
I understand vc_redistributable is a set of libraries required to run applications built out of Visual studio. So at my work place, can I install vc_redist on a device and avail its benefits without installing visual studio on that device?
Upvotes: 0
Views: 342
Reputation: 13719
Yes, and it is considered to be a preferred way to make the application running on other devices.
Can be downloaded from Microsoft site https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads
Alternate ways include statically linking, or distribute DLLs locally.
Note that the debug version is not distributed with vc_redist
, generally you should not distribute the debug build of your software.
Upvotes: 0