Reputation: 181
Since the new runtime libraries aren't on every computer, they need to have the redistributables downloaded, and I know I can do this with some kind of installer, but that is very troublesome.
So instead is there just a way for me to build my project with the old runtime libraries that are on every computers?
Or if I download an older version of visual studios and build the project on there to create the release, would that work properly? If this is possible is this the best way to go about it?
NOTE: statically linking the libraries is out of the question.
Upvotes: 3
Views: 2016
Reputation: 45272
With C++ (both managed and native) you can specify that you want to use the old build libraries. The only caveat is that you need the early versions of Visual Studio installed on your build machine.
You specify the toolset you want via the project property pages \ Configuration Properties \ General \ Platform Toolset combo.
Upvotes: 5