I can run my Asp.Net MVC 2 application without an issue on my local computer. Just Run / Debug.

But if I have already built it, I can't publish it! I have to clean the solution and publish it again. I know this is not system critical, but it's really annoying. "One Click Publish" is not "Clean solution and then One click publish"

The exact error is as follows:

Error 11 It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS.

I suspect it's something to do with the Web.Config in the Views folder, but then why only after I build once previously. And just to note, the app works fine once published.

link|improve this question

feedback

4 Answers

up vote 37 down vote accepted

i had the same problem with my MVC apps. it was frustrating because i still wanted my views to be checked, so i didn't want to turn off MvcBuildViews

luckily i came across a post which gave me the answer. keep the MvcBuildViews as true, then you can add the following line underneath in your project file:

<BaseIntermediateOutputPath>[SomeKnownLocationIHaveAccessTo]</BaseIntermediateOutputPath>

And make that folder not in your project's folder. Works for me. It's not a perfect solution, but it's good for the moment. Make sure you remove the package folder (located inside the obj\Debug and/or obj\Release folder) from your project folder otherwise you'll keep getting the error.

FWIW, MS know about this error...

link|improve this answer
1  
phil haack has an update on this issue, for those that run vs 2010 SP1: haacked.com/archive/2011/05/09/… – benpage May 10 '11 at 1:54
3  
nb the solution that phil has on that blog DOES NOT work for me. the above solution is my only solution. – benpage May 18 '11 at 23:14
4  
I think the deleting of the obj folder is a much simpler solution and less to remember/maintain about changes in the project file. Seems like that should be the top answer here. (as of mid 2011) – RyanW Aug 24 '11 at 14:16
feedback

I deleted everything out of my obj/Debug folder and it fixed this error. This allowed me to leave in the

<MvcBuildViews>true</MvcBuildViews>

option in my project file (which comes in handy with the T4MVC T4 template).

Edit: This can be achieved much easier by simply using the "Build" -> "Rebuild Solution" menu (because what rebuild actually does is clear the obj/Debug folder and then build solution).

link|improve this answer
feedback

I'm using this workaround on the MS Connect page for this error. It cleans all obj and temp files under your project (all configurations) before running AspNetCompiler.

Modify the MvcBuildViews target in your project file so that it depends on the targets that clean up the packaging files that Visual Studio has created. These targets are included in web application projects automatically.

All packaging files will be deleted every time that the MvcBuildViews target executes.

<Target Name="MvcBuildViews" AfterTargets="AfterBuild" Condition="'$(MvcBuildViews)'=='true'" DependsOnTargets="CleanWebsitesPackage;CleanWebsitesPackageTempDir;CleanWebsitesTransformParametersFiles;">
    <AspNetCompiler VirtualPath="temp" PhysicalPath="$(MSBuildProjectDirectory)" />
</Target>
link|improve this answer
Fixed my issue. Many thanks! – Ben Griswold May 27 '11 at 17:42
Works for me. I also commented the following target to work: <Target Name="AfterBuild" Condition="'$(MvcBuildViews)'=='true'"> <AspNetCompiler VirtualPath="temp" PhysicalPath="$(ProjectDir)" /> </Target> – kaptan Jun 1 '11 at 23:53
Thanks, worked for me!! – Thomas Sep 15 '11 at 13:31
Update - The MVC 3 Tools Update should fix this. haacked.com/archive/2011/05/09/… – jrummell Oct 6 '11 at 19:23
Yes... adding rmdir /S /Q "$(ProjectDir)\obj" to the post build section as per the Microsoft Ticket solved the problem! – Leniel Macaferi May 3 at 21:16
feedback

I had this problem as well, so I created a Pre-Build Event in the project properties to Clean the output directories(${projectPath}\bin,${projectPath}\obj\${ConfigurationName}). On another project I was also getting this error, even with the cleaning event in place. On the second project I was compiling the views as listed in the project file:

<MvcBuildViews>true</MvcBuildViews>

I changed the true to false, and it no longer complained about that error, but still ran correctly. I won't claim I know exactly what was causing the second error, but at least it got me moving forward for the time being.

link|improve this answer
Thanks for that, but I can't really mark the MvcBuildViews as False as it helps fix issues before I deploy. – Dann Apr 26 '10 at 8:16
feedback

Your Answer

 
or
required, but never shown

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