visual studio 2008 - Getting MSBUILD working with an ASP.Net website in Jenkins -


introduction

my asp.net website c# builds (& publishes) on development machine.

the solution uses .net framework 3.5

i use visual studio 2008

the website contains bin folder ajaxcontroltollkit dll

the issue

i attempting set jenkins continuous integration

jenkins running on windows server 2008 r2 based machine

i referencing svn repository , code appears checked out correctly.

the build fails following error:-

build started 10/09/2014 13:20:02.

project "d:\dev\manzen_fx_35\manzen.sln" on node 0 (default targets). building solution configuration "debug|any cpu". manzen_fx_35:
copying file "d:\dev\manzen_fx_35\bin\ajaxcontroltoolkit.dll" "..\manzen_fx_35\bin\ajaxcontroltoolkit.dll". copying file "d:\dev\manzen_fx_35\bin\ajaxcontroltoolkit.pdb" "..\manzen_fx_35\bin\ajaxcontroltoolkit.pdb". aspnetcompiler : error aspruntime: precompilation target directory (d:\dev\manzen_fx_35\precompiledweb\sourcecode) cannot in same tree source application directory (d:\dev\manzen_fx_35). done building project "d:\dev\manzen_fx_35\manzen.sln" (default targets) -- failed.

"d:\dev\manzen_fx_35\manzen.sln" (default target) (1) -> (manzen_fx_35 target) -> aspnetcompiler : error aspruntime: precompilation target directory (d:\dev\manzen_fx_35\precompiledweb\sourcecode) cannot in same tree source application directory (d:\dev\manzen_fx_35).

0 warning(s) 1 error(s) 

i don't have in visual studio site build successfully. msbuild struggling reference ajaxcontroltoolkit.dll & ajaxcontroltoolkit.pdb files , precompilation target directory.

i've not found other answers seem specific enough help. imagine solution simple , staring me in face having never used msbuild in isolation before (i in vs) i'm bit lost.

here's hoping can help.

i start removing toolkit , see happens. don't think it's problem.

i think has more with, "the precompilation target directory ... cannot in same tree source application directory." looks there precompilation going on , compiled files being sent wrong dir; or build should grabbing files already-precompiled directory, not source; or variation.

look precompilation "routine". have term, 'aspnet_compiler' in it.


Comments

Popular posts from this blog

javascript - how to protect a flash video from refresh? -

visual studio 2010 - Connect to informix database windows form application -

android - Associate same looper with different threads -