The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to copy a DLL to a project directory prior to build?

Brian Mackey
May 2, 2018

I'm running an old ASP.NET web site.  The DLL references are copied to the BIN folder.  Contrast this with most modern programming frameworks that will add a relative reference (this method works with CI builds).  

To work around this problem, I need to copy the 3rd party DLL into WebSite\Bin folder prior to running MSBuilds tasks.  

My thought is to run a Script task just after Source Code Checkout.  The problem I have is I don't know how to locate the 3rd party DLL on the CI build server.  I know the present working directory is something like:

C:\bamboo\xml-data\build-dir\JOBNAME
I need to get access to the relative source control directory:

$\fullPath\3rdPartyDLLFolder\MyThirdParty.dll

So I can do something like this in powershell:

Copy-Item -Path $\fullPath\3rdPartyDLLFolder\MyThirdParty.dll -Destination \ProjectDirectoryOnBuildServer\WebSite\Bin

I'm other to other solutions if there's a better way.

 

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
Brian Mackey
May 2, 2018

I added powershell's ls command to my Script task.  Then the bamboo log files told me which directories existed because it just output verbatim. My source control path was right there in the present working directory.  

TAGS
AUG Leaders

Atlassian Community Events