silverlight - do you have any solution to reduce the build time? -
i'm working on big solution, includes 20 projects(in silverlight, , use 10 wcf sevices), each tim test presentation layer, have build solution, , take more time. have solution reduce build time?
go build/configuration manager... , uncheck projects not working on. way build relevant project.
create solution include project wish modify. copy dlls other projects folder. go build, your_project properties... reference path, , add folder.
switch parallel msbuild (by adding external tool), can utilize cpu cores. set arguments multiproc , verbosity - minimal:
/m /v:m
get rid of unused styles
use ssd
if you're on laptop, make sure machine set in high performance mode.
also refer old blog post
Comments
Post a Comment