V1 and V2 side by side

Posts   
 
    
Randy
User
Posts: 7
Joined: 25-Sep-2005
# Posted on: 10-Sep-2006 02:34:02   

Can I install V2 alongside V1 without running the risk of corrupting my projects that are utilizing V1? (I'm worried about runtime library references)

Thanks, Randy

Otis avatar
Otis
LLBLGen Pro Team
Posts: 39927
Joined: 17-Aug-2003
# Posted on: 10-Sep-2006 09:58:57   

You can install them side by side. Existing projects won't be affected. If you create a NEW project, VS.NET sometimes makes a mistake which dll to reference, though you should manually update the references then, which is a one-time effort simple_smile

Frans Bouma | Lead developer LLBLGen Pro
Randy
User
Posts: 7
Joined: 25-Sep-2005
# Posted on: 11-Sep-2006 21:26:28   

Thanks!

Randy
User
Posts: 7
Joined: 25-Sep-2005
# Posted on: 11-Sep-2006 22:19:29   

Ok, I installed V2 and used it to generate my DAL for a new project. Everything is working perfectly.

I then went to an existing project and tried to rebuild the solution and got numerous errors - the primary one being:

Warning 1 Assuming assembly reference 'SD.LLBLGen.Pro.ORMSupportClasses.NET20, Version=1.0.2005.1, Culture=neutral, PublicKeyToken=ca73b74ba4e3ff27' matches 'SD.LLBLGen.Pro.ORMSupportClasses.NET20, Version=2.0.0.0, Culture=neutral, PublicKeyToken=ca73b74ba4e3ff27', you may need to supply runtime policy

I looked at the properties of the references in the generated code project and it says:

For SD.LLBLGen.Pro.DQE.SqlServer.NET20

C:\Program Files\Solutions Design\LLBLGen Pro\RuntimeLibraries\DotNet20\SD.LLBLGen.Pro.DQE.SqlServer.NET20.dll

Runtime Version: v2.0.50727 Version: 1.0.2005.1

For SD.LLBLGen.Pro.ORMSupportClasses.NET20

C:\Program Files\Solutions Design\LLBLGen Pro\RuntimeLibraries\DotNet20\SD.LLBLGen.Pro.ORMSupportClasses.NET20.dll

Runtime Version: v2.0.50727 Version: 1.0.2005.1

Please advise!

Thanks, Randy

Randy
User
Posts: 7
Joined: 25-Sep-2005
# Posted on: 11-Sep-2006 22:52:40   

Ok, I got it working - thought I would post in case anyone else has the same issue. I basically did what you said to do for the newly created projects on my existing project.

I went into the references and deleted SD.LLBLGen.Pro.DQE.SqlServer.NET20 and SD.LLBLGen.Pro.ORMSupportClasses.NET20 - then went and added them manually back in. Rebuilt and everything now works fine!

Thanks for the help, Randy