Our .NET app with 8-10 projects and created a Jenkins job to build it. We also have a batch job called in Jenkins to create the set up files for our app using INNO Setup. The issue we need to address is copy the Setup files to a shared location. Could you please suggest a better way to accomplish it.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
In a .NET environment you should have a look at Nant (http://nant.sourceforge.net/). Use a Nant script as a post-build action with a default.build like this :
|
|||
|
|
|
In general, you will probably want to use a publishing plugin. There are different plugins depending on where (and how) you want to put the file. Here's a quick list to get you started:
A larger list can be found in the Artifact Uploader Plugins list. |
|||
|
|