vote up 1 vote down star

Is there a way to pre-compile websites with VWD Express ?

Can I use ASP.NET Merge tool or similar utility ? and is there any limitation to options (can I choose whatever options like in VS Pro edition)

flag

2 Answers

vote up 1 vote down check

Not 100% about VWD but do you have post build options within IDE (under the Build Events of the web application properties)

Even without you could run following from the command line

C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_compiler -v / -f -u -p 
"$(ProjectDir)\" "$(SolutionDir)PrecompiledWeb\$(ConfigurationName)"
link|flag
@dove: thanks for your answer, but I need more clarification about how to achieve same results of pre-compilation with Pro version (Build views, Enable updating or compile all to dll) ...etc Thanks again – Ahmed Khalaf Sep 30 at 13:26
@ahmed look at aspnet_compiler /? and you'll details of the flags there, e.g. -u means updatable. Also you might want to look at web deployment projects microsoft.com/downloads/… – dove Sep 30 at 15:15
asp.net/learn/hosting/… – Ahmed Khalaf Oct 1 at 9:06
vote up 0 vote down

I haven't tried this with anything generated by VS Express, but you should be able to build and deploy the website using a custom MSBuild script no matter where it came from. Something like:

<MSBuild Projects="$(MSBuildProjectDirectory)\MyProject.csproj"
         Targets="ResolveReferences;_CopyWebApplication"
         Properties="WebProjectOutputDir=$(MyTargetDir);OutDir=$(WebProjectOutputDir)\;Configuration=Release" />
link|flag

Your Answer

Get an OpenID
or

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