1
  1. Install a fresh Sharp Architecture application
  2. Run YourApp.Web.Mvc
  3. See the following error:

Entry Point was not found

Terry
  • 14,099
  • 9
  • 56
  • 84

2 Answers2

1

Or better yet upgrade it to MVC4. Step by step instructions here http://anyrest.wordpress.com/2012/12/12/upgrading-sarp-to-mvc4/

Raymund
  • 7,684
  • 5
  • 45
  • 78
0

Issue:

The MVC4 DLL is being referenced by default rather than MVC3

Solution:

  1. Remove System.Web.Mvc reference from MyApp.Web.Mvc
  2. Add reference to System.Web.Mvc runtime version 3.0.0
Terry
  • 14,099
  • 9
  • 56
  • 84