Make CruiseControl.NET MSBuild Task Work The Same As VS 2008 Build -


this similar these 2 questions:

why msbuild fail command line vs2008 succeeds?

how cmd line build command vs solution?

when build visual studio 2008, build succeeds. if build command line using msbuild comes .net framework 3.5 install, fails. if use visual studio 2008 command prompt gets installed vs2008 succeeds. answers (which partially understood) first 2 questions linked seem reason why fails command line. question specific cruisecontrol.net. how can apply answers cruisecontrol.net msbuild task successful after future changes long builds correctly in vs 2008?

thanks in advance help!

the first step project build correctly using msbuild command line. me matter of installing missing dependencies on ci server list.

1) needed download , install power toys compact framework 3.5 enable building .net compact framwork 3.5 project. alternatively have installed visual studio 2008 professional edition.

2) missing sql server compact 3.5. after downloading , installing windows mobile, dependency still not found. solved including copy of sqlserverce.dll file in repository of project , changing references file use 1 downloaded repository instead of expecting system know find file. alternatively installing visual studio 2008 professional edition may have solved problem without need me include copy of dll in repository, don't know sure.

since got project compile using msbuild command line without having special initialization or use specialized command prompts, msbuild task in cruisecontrol.net works without doing special. using msbuild command prompt continue straightforward me, others seem not have been lucky according 2 questions linked @ top of question.


Comments

Popular posts from this blog

unicode - Are email addresses allowed to contain non-alphanumeric characters? -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c++ - Convert big endian to little endian when reading from a binary file -