Is the code compatible with the latest preview release? I downloaded and compiled the project in the Web folder and am getting compile errors; don't know where these types should reside:
Error 1 The type or namespace name 'ActionFilterAttribute' could not be found (are you missing a using directive or an assembly reference?) Web\Filters\CacheFilter.cs 7 41 Web
Error 2 The type or namespace name 'ActionFilterAttribute' could not be found (are you missing a using directive or an assembly reference?) WebSites\kigg\Web\Filters\CompressFilter.cs 8 35 Web
Error 3 The type or namespace name 'FilterExecutedContext' could not be found (are you missing a using directive or an assembly reference?) Web\Filters\CacheFilter.cs 24 47 Web
Error 4 'RouteCollection' is an ambiguous reference between 'System.Web.Routing.RouteCollection' and 'System.Web.Mvc.RouteCollection' WebSites\kigg\Web\Global.asax.cs 18 43 Web
Error 5 The type or namespace name 'FilterExecutingContext' could not be found (are you missing a using directive or an assembly reference?) Web\Filters\CompressFilter.cs 10 48 Web
Error 6 'Kigg.CompressFilter' is not an attribute class (7-10 dups)
Error 10 The type or namespace name 'NonAction' could not be found (are you missing a using directive or an assembly reference?) WebSites\kigg\Web\Controllers\StoryController.cs 68 10 Web
Error 11 The type or namespace name 'NonActionAttribute' could not be found (are you missing a using directive or an assembly reference?) Web\Controllers\StoryController.cs 68 10 Web
Error 12 'Kigg.CompressFilter' is not an attribute class Web\Controllers\StoryController.cs 82 10 Web
Error 13 'Kigg.CacheFilterAttribute' is not an attribute class Web\Controllers\StoryController.cs 83 10 Web
Error 14 'Kigg.CompressFilter' is not an attribute class Web\Controllers\StoryController.cs 120 10 Web
Error 15 'Kigg.CompressFilter' is not an attribute class Web\Controllers\StoryController.cs 141 10 Web
Error 16 'Kigg.CompressFilter' is not an attribute class Web\Controllers\StoryController.cs 176 10 Web
Error 17 'Kigg.CompressFilter' is not an attribute class Web\Controllers\StoryController.cs 211 10 Web
Error 18 'Kigg.CompressFilter' is not an attribute class Web\Controllers\StoryController.cs 239 10 Web
Error 19 'Kigg.CompressFilter' is not an attribute class WebSites\kigg\Web\Controllers\StoryController.cs 261 10 Web
Error 20 'Kigg.CompressFilter' is not an attribute class Web\Controllers\StoryController.cs 310 10 Web
Error 21 'Kigg.CompressFilter' is not an attribute class Web\Controllers\StoryController.cs 344 10 Web
Warning 22 The custom tool 'MSLinqToSQLGenerator' failed while processing the file 'Models\Kigg.dbml'.
Here's diff for my Web.csproj file:
Old:
<Reference Include="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\..\..\Program Files\Microsoft ASP.NET MVC Preview 2\Assemblies\System.Web.Mvc.dll</HintPath>
New:
<Reference Include="System.Web.Extensions, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<RequiredTargetFramework>3.5</RequiredTargetFramework>