Try our conversational search powered by Generative AI!

running different versions on the same machine

Vote:
 

I worked on a project this spring using episerver 5.1.422.122 wish was installed using the manager tool.

Lately i joined a new project where i installed an other site using 5.1.422.256.

Both versions install there own common dlls with there own version number, and both registrate the dll in the GAC.

If is try to run the old site i get an error mesaage.

CS1705: Assembly "Web, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' uses 'EPiServer, Version=5.1.422.256, Culture=neutral, PublicKeyToken=8fe83dea738b45b7' which has a higher version than referenced assembly 'EPiServer, Version=5.1.422.122, Culture=neutral, PublicKeyToken=8fe83dea738b45b7'

Ofcause i dont want to do an upgrate to the old site, because several developers is working on it, and i dont want to force the to do the upgrate too, and even if it was possible to only do an upgrate to my local machine i dont like the idea of having differnet versions for production and development.

If anyone have any idea of what can be done i would greatly appreciate it

Best regards

Andreas

 

#22195
Jul 28, 2008 11:57
Vote:
 

Hello Andreas,

Are you running the old site through Visual Studio? If you are it could be that the references to EPiServer.dll have to be repointed. Try removing and then re adding the reference.

/ Petter

#22201
Jul 28, 2008 16:33
Vote:
 

Thanks for your reply.

 Well.... im running the site having iis pointing at the folder where vs compiles it to.

The idea of having the wrong dlls is properly right. all referances to the dlls refers to the gac 256 version. i changed them all, to point to the 122 version, but got a episerver comile error when i hit the page.

Then i made a clean build, and hmmmmmmmm got all the dlls replaced with the 256 version....

 Ill make an other attempt a little later on..

 Andreas

 

#22264
Jul 31, 2008 14:53
Vote:
 

Is there any follow-up information on this, as I'm having the same problem on one of our development servers?

Each WebServer on the server has its own IP address and DNS entry assigned for it and this is how I browse the sites:

http://epi-<clientwithv_122>.<ourdomain>.se

http://epi-<clientwithv_256>.<ourdomain>.se

I get the exact same error as in the initial post.

Any insight would be helpful!

Thanks.

Fredrik

#22293
Aug 01, 2008 10:03
Vote:
 
Check the references on your project in Visual Studio. Check properties on them and make sure that they got the correct version number. If the version number is wrong, delete the old reference and add a new one, pointing to a correct dll.
#22306
Aug 01, 2008 15:53
Vote:
 

I did check the refs. and the did point to the wrong project.
i changed the dlls again and can now show the error i recived as described in my last post...

first of all, the project compiles with out any problems, but when i hit the page i get this error message

Compiler Error Message: CS1519: Invalid token ',' in class, struct, or interface member declaration

Line 73:     public virtual EPiServer.Personalization.GuiSettings, EPiServer EditTreeSettings {
Line 74:         get {
Line 75:             return ((EPiServer.Personalization.GuiSettings, EPiServer)(this.GetPropertyValue("EditTreeSettings")));

This is auto generated code.... pleace notice the comma between  GuiSettings and EPiServer for the return type... this is not legal syntax..... this is also present in the type cast in the return statement.

The first time i ran into this problem was when i installed the old site (122) site using the 256 version. at that time i removed all the 256 dlls manually from my computer and got it to work in that way. But gone is the time and left is only the fund memory..

In VS the standard refs refers to the GAC dir of the newest version (C:\WINDOWS\assembly\GAC_MSIL\EPiServer\5.1.422.256__8fe83dea738b45b7). I can not change the gac dir to the 122 verson by browsing to it, and it is not shown in the .net tab. (this can be done by adding each dll int the registry manually) 

anyway i added them all manually and  got the error speified.

Maybe it would work i i found out how the referance is added from the gac to my project, because it it has been updated automaticlly in the old project at the time i installed the newest version.

feel free to comment if you have any input.

/Andreas

 

 

#22307
Aug 01, 2008 17:03
Vote:
 
Also getting problems with :

Compiler Error Message: CS1519: Invalid token ',' in class, struct, or interface member declaration,

after downloading a project from Team  foundation server.

I have two versions of CMSManager installed on my machine atm og there will always come more ...

Anyone who can tell us how to avoid these problems in the future? (and fix this one ;)) ??

#22681
Aug 12, 2008 10:26
Vote:
 

Getting the same error as other people here. I've tried removing all references and re-adding the correct dll's (256 in my case). The project compiles, but it only shows a server error when I try to run it.

Compiler Error Message: CS1519: Invalid token ',' in class, struct, or interface member declaration 

 

Microsoft (R) Visual C# 2005 Compiler version 8.00.50727.3053
for Microsoft (R) Windows (R) 2005 Framework version 2.0.50727
Copyright (C) Microsoft Corporation 2001-2005. All rights reserved.

c:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\ad873a70\5d2c796d\App_Code.fquqextc.0.cs(118,62): error CS1519: Invalid token ',' in class, struct, or interface member declaration
c:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\ad873a70\5d2c796d\App_Code.fquqextc.0.cs(226,57): error CS1519: Invalid token ',' in class, struct, or interface member declaration

 

#23042
Aug 25, 2008 15:45
Vote:
 

I had exactly the same problem today and found the following.

The personalization profile settings in the web.config are used to dynamically create a .cs file by the ASP runtime.  This contains EPiServer.Personalization.SubscriptionInfo and .GuiSettings, both contained in EPiServer.dll. 

In my project, EPiSever.dll was not in the bin folder so the runtime was using one elsewhere on my machine - and this was an old version - .122 I think - that does not contain the required classes.  After putting the correct .256 version in the bin folder everything works again.

 Cheers 

 

#23050
Aug 26, 2008 1:11
Vote:
 

To fix this check properties of all episerver references in project. My problem was that property "Specific Version" was False and even though I had correct version of dll's in bin folder website didn't work correctly.

After setting this property to True everything started working.

#28915
Mar 26, 2009 16:26
Vote:
 

Having same problem with 6.0.318.113. Had newer version installed, but removed and installed this version.

Solution compiles just fine, but when visiting page I get this error.

 

Dear EPiServer team. How come you haven't fixed this after 3 years?

#51608
Jun 17, 2011 9:10
Vote:
 

Make sure you have assembly redirects in web.config for all your dependencies. Assembly binding might seem like a bit of black magic and what versions you reference in your project may not be respected when the runtime loads them. It might find a different verison in GAC and use that one instead.

If you want to analyze deeper what assembly is requesting the wrong version and why it is being loaded you can use the fuslogvw tool in windows. To make it log the bindings from IIS you might have to change the app pool user to run as the same user account as you are running fuslogvw (your user account).

But first check that you have assembly redirects for all episerver assemblies pointing to the version you want to use.

#51614
Jun 17, 2011 11:07
Vote:
 

Another tip is to manually edit the csproj file to see what versin is referenced. I usually stick all dependencies in a folder and reference them from there (the hintPath element in the .csproj xml). Then I remove all information in the reference except for the assembly name (no versions, guids, architectures etc) and set specific version to false (specificVersion element in the xml, it is default so if it is missing it means false).

#51615
Jun 17, 2011 11:11
Vote:
 

Signs that might indicate that the bug is on your side and not the customers side:

  1. More than one customer is experiencing it.
  2. You ask the customer to manually edit the csproj-file to bypass the problem.

Steps to take:

  1. Acknowledge the bug.
  2. Fix the bug.

---

We are not using GAC. The reference is to the .dll's directly (included in project). I've completely uninstalled EPi from the system and checked GAC that it is gone. This same code works fine on other developer computers (using TFS). We all use dedicated plain Windows 2008 R2 virtual machines for development. In short: There is only one version of the .dll on the system, and this version is referenced. No black magic. (By the way, when adding to GAC you need to sign your assembly with a strong name - making it strongly named. If EPi properly and correctly respects the strongly named reference then "black magic" does not exist.)

From what I can determine you are actually generating the code run-time for IIS to compile. This run-time generation of code fails by generating invalid code. I'm sure there is a good reason for it, but "public virtual EPiServer.Personalization.GuiSettings, EPiServer EditTreeSettings {" is not valid code either way and it is generated by EPi.

Any other suggestions on where I can look? Burning valuable time here...

#51624
Edited, Jun 17, 2011 12:13
Vote:
 

So whats the latest news here? found? confirmed? fixed?

---

In my case it was because I had added the new EPiServer.dll to the GAC and in the project but not set "Copy Local = True". 

#58350
Edited, Apr 20, 2012 11:07
Vote:
 

We encountered this too. It seems that the core problem with this always turns out to be some lack of assembly resolution around EPiServer.dll.  In our case, that wasn't copied into the bin for some reason.

#60323
Aug 03, 2012 18:25
This thread is locked and should be used for reference only.
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.