VS.Net 2003 - Microsoft drop the ball again...

Merrion

Well-known member
Joined
Sep 29, 2001
Messages
265
Location
Dublin, Ireland
User Rank
*Experts*
So - I upgraded to VS2003 and recompiled the prin chserver.net component no problem.

Now anybody opening the component from VS.Net 2002 gets a stupid "The implementation has changed" error and if they try to open the source code they get "This code was created with a newer version of Visual Studio" so - in order to run my code they will have to upgrade as well????

Note that the code hasnt actually changed - I just opened it up in VS.Nret 2003 and recompiled it! Any thoughts?
 
Checked through the help and it seems that the solution ffile is converted to VS.Net 2003 and this is one-way.

So this effectively means we will need to maintain seperate copies of the solution for VS.Net 2002 and 2003 (or only use the older version?)
 
What about the project file? If all was the same except the Solution file itself that would be ok by me.
 
Nah - the dll compiled in VS.Net 2003 wont work in VS.Net 2002 - it complains about not being able to resolve something or other.
Anyway - two seperate machines with two different setups for the moment until I work out what is going on...
 
Well the DLL you compiled using VS.NET 2003 uses a newer version of the framework, so that isnt surprising.

I have it on good authority that VS.NET 2003 can compile solutions to be version-compatible with VS.NET 2002. In the build configuration, you can select which .NET platform to build for. Hopefully thatll solve your problem.

You can also add the following line to your app.config.

<supportedRuntime version="v1.0.3705"/>
 
Back
Top