Using 1.0 objects in 1.1 programs - Any problems?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello

I've read and attempted to understand Microsoft's article on Side-by-side execution of frameworks http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetdep/html/sidexsidenet.asp , but I think I have a different issue

A year ago our programmers picked up Visual Studio 2002 and wrote some enterprise level classes, like a database helper class, for example. When VS 2003 came, a few developers began new projects in it. So my question is, are there any problems in using an object created in VS 2002 with the 1.0 framework within a program built in VS 2003 using the 1.1 framework

We've considered building all of our enterprise level objects in both 2002 and 2003 so each program can use the dll of the correct version, but if that's not necessary of course we'd like to avoid it

Thanks for any advice
Kevin
 
You should be able to mix assemblies from different versions without a
problem, provided you follow the whitepaper's instructions.

Kevin said:
Hello,

I've read and attempted to understand Microsoft's article on Side-by-side
execution of frameworks
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetdep/html/sidexsidenet.asp ,
but I think I have a different issue.
A year ago our programmers picked up Visual Studio 2002 and wrote some
enterprise level classes, like a database helper class, for example. When
VS 2003 came, a few developers began new projects in it. So my question is,
are there any problems in using an object created in VS 2002 with the 1.0
framework within a program built in VS 2003 using the 1.1 framework?
We've considered building all of our enterprise level objects in both 2002
and 2003 so each program can use the dll of the correct version, but if
that's not necessary of course we'd like to avoid it.
 
Back
Top