I've written a c# wrapper (Com+ class library) over a old legacy c++ dll. the Dll is a thread unsafe dll (it is using global variables) and was supplied to me by a third party company(the code is not available to me).
I have been trying to get a previously built .NET component to run on a Windows 2000 Server box. It's previous home was on an XP box using .NET framework version 1.0.3328. On that machine, it ran with no problem, but on the 2000 Server box, with version 1.1.4322, it fails
I created a COM+ application using .Net 1.0. I have subsequently installed .Net 1.1 on my computer. It seem that the COM+ app has automatically started running against 1.1, and is not working properly as a result. I have found help on how to tell a .Net App(EXE) which Framework ...