Reputation: 2745
I build app using VS2013 but it needs VC redistributable installed on target machine to open app. How can I install these along side my app?
Upvotes: 0
Views: 678
Reputation: 41067
For Win32 desktop applications built with Visual Studio 2013, you can choose one of three options as covered on MSDN:
The first two options are better in the sense that security servicing is handled for the central OS-wide version. The last option doesn't require MSI or admin rights, but means deploying any security servicing updates for the C Runtime is your problem.
For Windows Store apps, Windows phone apps, and Xbox One apps you do not deploy the CRT yourself. It's part of the platform deployment service to do this.
Upvotes: 2