vote up 1 vote down star
1

Is is possible to compile asp.net mvc views into one assemply when publishing web project?

flag

2 Answers

vote up 1 vote down check

There is ASP.NET Merge tool (Aspnet_merge.exe) and Web Deployment Projects ( UPDATED: Aspnet_merge.exe came with Windows SDK components when you installing Visual Studio 2008 - look at "%Program Files%\Microsoft SDKs\Windows\v6.0A\bin" folder ). These links may be interesting to you:

UPDATED:

In ASP.NET MVC projects there is <MvcBuildViews>true/false</MvcBuildViews> property which enables compiling Views in AfterBuild target. But it does not compile your project in one assembly. You should use ASP.NET Merge tool or Web Deployment Projects.

link|flag
i used web deployment projects but it wasn't working as it supposed to – Tadeusz Wójcik Jun 6 at 18:51
You could try aspnet_merge.exe -o OutputAssemblyName.dll "path to your compiled project". It works well on my projects – eu-ge-ne Jun 6 at 19:21
vote up 0 vote down

See another question & answer here. It has some example code and background info

link|flag

Your Answer

Get an OpenID
or

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