I have tried to use NAnt 0.92 to build VS2008 solution faster. I'm using solution-task but it doesn't work. In the internet say that must use msbuild-task instead of solution-task. But build by msbuild-task is not different with build in VS2008. Is there any other way?
If your main goal is to build solutions faster, your main target should not be to avoid MSBuild. Here is some general advice on how to speed up your builds:
/m
switch. Find more information on this on Scott Hanselman's blog.