16

My razor view is failing to compile with the following error:

Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. 

Compiler Error Message: CS0234: The type or namespace name 'Helpers' does not exist in the namespace 'System.Web' (are you missing an assembly reference?)

I have System.Web.Helpers added as a reference to my project, so I am not sure what else I need to do. I have also tried a clean rebuild after adding the reference, and no change.

What am I missing?

KallDrexx
  • 27,229
  • 33
  • 143
  • 254

2 Answers2

31

Aha figured it out. I needed to add

<add assembly="System.Web.Helpers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />

To the <assemblies> section of web.config!

KallDrexx
  • 27,229
  • 33
  • 143
  • 254
3

Web.config line should go here:

  <configuration>
    <system.web>
      <compilation debug="true" targetFramework="4.0">
        <assemblies>
          <add assembly="System.Web.Helpers, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
SushiGuy
  • 1,573
  • 17
  • 20