Questions tagged [side-by-side]

Side-by-side Assemblies are a Microsoft Windows solution that reduces versioning conflicts in Windows-client applications.

Side-By-Side (SxS) assemblies allow application developers to isolate the DLL resources used by their application and avoid "DLL-Hell" and other COM compatibility issues caused by multiple applications using different versions of dependency DLL files.

With Windows, application developers can build isolated applications that are fully self-describing and unaffected by changes to the registry, other applications, or other versions of assemblies running on the system. Application authors and administrators can use manifests to manage the sharing of side-by-side assemblies after deployment on either a global or per-application basis.

See also Microsoft Learn article: Isolated Applications and Side-by-Side Assemblies

211 questions
-1
votes
1 answer

Thread in SxS C# COM DLL makes calling application unresponsive

I have written a Side-By-Side COM DLL in C#. I am using this DLL in VB6. The COM DLL contains a thread. As soon as I start this thread, the calling application (in my case VB6) blocks (meaning I can not do anything in it anymore). I am starting the…
tmighty
  • 10,734
  • 21
  • 104
  • 218
1 2 3
14
15