vote up 0 vote down star

Hi,

I just recently installed the MVC beta. However, I assumed because the versioning numbers have changed and because it now uses the GAC instead of the bin folder that it wouldn't break existing applications.

However, it has.

What steps do I need to follow to ensure my existing preview 3 applications use a bin copy of the .dlls and are not broken by the installation of the beta?

flag

2 Answers

vote up 3 vote down check

ASP.NET MVC beta is also bin-deployable, Move the following DLL's from GAC to the bin folder of your app

* System.Web.Mvc
* System.Web.Routing
* System.Web.Abstractions

Check this article for more information

link|flag
Thanks, I was aware it was bin-deployable, just didn't realise bin deployment and GAC were exclusive. – Graphain Nov 6 '08 at 21:39
See Brad Wilson's post too for more info. The link you posted had a useful comment. – Graphain Nov 11 '08 at 0:00
vote up 2 vote down

You'll need to force uninstall (gacutil /u /f System.Web.Mvc) the Beta DLL from the GAC, and then use bin deployment for all versions (including the beta).

link|flag
Thanks, I was aware it was bin-deployable, just didn't realise bin deployment and GAC were exclusive. Interestingly, phil haack mentions that gacutil wasn't suitable in the link rajlogs posted. – Graphain Nov 6 '08 at 21:41
Unless /f overrides that problem :-) – Graphain Nov 6 '08 at 21:41
You can use a newer version from bin, but not an older one, and all the pre-beta versions were 0.0 whereas the beta is 1.0, so the presence of 1.0 in the GAC invalidates the 0.0 in bin. – Brad Wilson Nov 9 '08 at 1:43
Thanks - I wish I could spend some rep or something to vote this as accepted answer too because that little comment answered my question - just feel bad taking the accepted answer from a low rep :-) – Graphain Nov 10 '08 at 23:03
Hmm gacutil doesn't work for the reasons outlined in the link rajlogs posted, so I'll have to uninstall MVC, but then I'll lose templates and stuff won't I? – Graphain Nov 10 '08 at 23:16
show 2 more comments

Your Answer

Get an OpenID
or

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