vote up 1 vote down star
1

Is there any way to force my asp.net application to load the assembly from local bin directory since there is another older version of the assembly with the same name in the gac?

I can't delete the gac version since other applications are using it and I am facing some difficulties when adding the newer version to the gac.

flag

4 Answers

vote up 1 vote down

Strong name the assembly and reference the strongly named version you deploy with your solution.

link|flag
I try it but it also loads the assembly from the gac – Khaled Musaied Jun 13 at 20:45
Forgot to add the "change version number" step. Then you should be golden. – Wyatt Barnett Jun 13 at 21:19
vote up 0 vote down

How does your application load this Assembly? Did you make direct reference via "Browse"?

link|flag
I am referencing the project but in the production the old assembly is deployed to the gac – Khaled Musaied Jun 13 at 19:54
vote up 0 vote down check

I found it

To force your application to read from local bin directory you have to remove signing from your assembly and then the application will load the assembly from bin.

Thanks Wyatt Barnett and murad.

link|flag
vote up 0 vote down

Why not install the version that you like into the GAC and then reference it in the GAC?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.