runtime_libs

TwitterFacebook
Get flash to fully experience Pearltrees
http://msdn.microsoft.com/en-us/library/windows/desktop/aa374224(v=vs.85).aspx If an isolated application specifies an assembly dependency, side-by-side first searches for the assembly among the shared assemblies in the WinSxS folder.

Assembly Searching Sequence

How to: Deploy using XCopy

This topic demonstrates how to deploy applications by copying application files from one computer to another. This technique is useful for debugging applications on another computer. For background on this deployment scenario, see Scenarios for Deployment Examples . http://msdn.microsoft.com/en-us/library/ms235291(v=vs.80).aspx
http://msdn.microsoft.com/en-us/library/aa376307(v=vs.85).aspx A Windows side-by-side assembly is described by manifests . A side-by-side assembly contains a collection of resources—a group of DLLs, Windows classes, COM servers, type libraries, or interfaces—that are always provided to applications together.

Side-by-side Assemblies

http://msdn.microsoft.com/en-us/library/ms235342(v=vs.80).aspx Loading a C/C++ application can fail if dependent Visual C++ libraries cannot be found. A list of potential runtime errors can be found in Redistributing Visual C++ Files .

Troubleshooting

http://msdn.microsoft.com/en-us/library/ms235299(v=vs.80).aspx

Redistributing Visual C++ Files

When you develop an application using Visual C++, you have the advantage of working on a computer that is not only a good development environment, but is also a convenient environment on which to run and test applications.
http://www.codeproject.com/Articles/104529/Deploying-Visual-C-Runtime-Files-as-Private-Assemb If you create a C++ project in Visual Studio and configure it to "Use MFC in a Shared DLL" (the default) you need to make sure the C runtime (CRT) and the MFC libraries are installed in the correct versions on the end user's computer.

Deploying Visual C++ Runtime Files as Private Assemblies

http://helgeklein.com/blog/2010/03/deploying-visual-c-runtime-files-as-private-assemblies/

Deploying Visual C++ Runtime Files as Private Assemblies | Helge Klein | Home of SetACL

If you create a C++ project in Visual Studio and configure it to “Use MFC in a Shared DLL” (the default) you need to make sure the C runtime (CRT) and the MFC libraries are installed in the correct versions on the end user’s computer. That can be difficult. There are three ways to install the libraries on target computers.