vote up 2 vote down star

I am succesfully building ASP .Net applications in NAnt using the ASP Compiler, without a problem., as part of my Continuous Integration process.

However, if I try exactly the same process on an ASP .NET MVC application, the build fails in NAnt, but will compile succesfully in Visual Studio. The error message I get in NAnt is:

[HttpParseException]: Could not load type 'MyNamespace.Views.Home.Index'

which appears that it has a problem with the dots in the filenames, but I might be wrong.

Any suggestions are most welcome.

flag

65% accept rate

4 Answers

vote up 0 vote down

My best guess is that the ASP.Net mvc dll's are not installed on the build server. ASP.Net MVC is a separate download.

link|flag
The problem is, this is running on my local dev PC... I can literally build the project in Visual Studio, exit out and open up a Command Window to run my NAnt script and it fails...! – Brett Rigby Sep 6 at 18:44
OK. New guess: you are opening the "command prompt" not the "visual studio prompt". The difference is the path. Since the path is missing it cannot find the dll. – Shiraz Bhaiji Sep 6 at 19:05
vote up 1 vote down

Not exactly an answer to your question but more a different tack that might solve what you wish to achieve.

I find studio to be more friendly that the asp compiler from the command line.

Could you not build it with devenv.exe through a NAnt command line task.

Best of luck,

Dan

link|flag
Interesting take on things. I'll look into it. – Brett Rigby Sep 6 at 18:44
You're right, the aspnet_compiler.exe is WAY more harsh than the Visual Studio compiler!! – Brett Rigby Sep 15 at 21:07
vote up 1 vote down

Installing the MVC bits on the build box should sort this out--it is either lacking the .dlls to know your Home.Index view descends from System.Web.Mvc.ViewPage or it doesn't have the right project template for the compiler to use.

link|flag
vote up 0 vote down

You shouldn't install ASP.NET MVC onto the build box. You should be referencing the System.Web.MVC, System.Web.Routing and System.Web.Abstractions DLLs from wherever you store your third-party references. We normally have a /lib folder for all references where we have those 3 DLLs (and many more) stored and a /src folder where all of our code lives. If you are referencing these DLLs this way, you no longer have to rely on the environment for those DLLs. This blog post explains this idea in more detail.

link|flag

Your Answer

Get an OpenID
or

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