ASP.NET MVC Preview 5 Bare Bones 2
Posted on September 7, 2008There were some quirks in my last bare bones mvc project. Some stuff wouldn't work when rendering views in the browser. Long story short, I needed this:
<system.codedom>
<compilers>
<compiler language="c#;cs;csharp" extension=".cs" warningLevel="4"
type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<providerOption name="CompilerVersion" value="v3.5"/>
<providerOption name="WarnAsError" value="false"/>
</compiler>
</compilers>
</system.codedom>
| |
1
2
3
4
5
6
7
8
9
|
Anyway, here is the new project template.