Anyone know where I can get a Nant task for ILMerge 2.9.210? I have tried this http://code.google.com/p/ilmerge-tasks/ but it is built against ILMerge 2.0.7.28 of ILMerge. It says that the new project is at ilmerge.xpdm.us (sorry new user, can't post 2 hyperlinks) but that link doesn't seem to work for me. Anyone got any other ideas?
'ILMerge' these tips with these tips..
Basically - create a new nant task.
Worked fine for me. :)
ILMerge Tasks for NAnt & MSBuild can be found here:
http://code.google.com/p/ilmerge-tasks/
Related
I'm new to Jenkins and Groovy Scripts, but I came to the community in order to get help, because I couldn't find anything valuable so far on the web...
We have a set of JobDSL groovy script which i'm trying to learning, but I'm not an developer, so... I'm stucked!
This is the Error message, which Jenkins returns me:
Found multiple extensions which provide method kubectlBuildWrapper
with arguments
[applications_apt$_run_closure1$_closure5$_closure9$_closure40$_closure42$_closure44$_closure48#6e592d55]:
[org.jenkinsci.plugins.kubernetes.cli.KubectlBuildWrapper,
org.csanchez.jenkins.plugins.kubernetes.KubectlBuildWrapper]
I don't have a clue where start fixing this.
We have 2 installations of jenkins. One of them is running in a VM (normal deploy) and the second one, it is running on Kubernetes.
On the first installation, this pipeline runs pretty fine, but the second it gives me the error that i've mentioned above.
So, if anyone could help, I will be very thankful.
Thank you!
I am in process of creating a Nant BuildFile which will use MSBuild, Nunit, Ncover and Ndepend for compilation, unit test, code coverage and Code quality check. I am not able to find any task for Ndepend in Nant. It would be helpful if someone can share the task syntax.
Regards
Anuj
The command line options are available at:
http://www.ndepend.com/docs/ndepend-console
These can be executed through Nant scripts as mentioned in below link:
http://ncodex.googlecode.com/svn/tags/0.3.0.50/Build/Packages/nDepend/bin/NAnt/ReadMe.txt
There is just one mandatory argument. All other arguments can be passed in any order.
It is a popular tool and I am surprised not many posts are available. I missed the command line argument page in NDepend site because it is by the heading NDepend Console. Hope it helps others going forward!!
does anybody know of a good tutorial for getting started with NQUnit.NUnit.
I've installed it to my test project via nuget and am unsure what the blank.js and async.js files are all about, should I rename these to match my files under test or do I just add my asyncronous and syncronous tests to the respective files.
ta!
Find the answer in the following link:
NQUnit: JavaScript testing within .NET / CI
I am trying to call a NAnt script from TeamCity, but I'm encountering something that makes no sense to me.
I've tested the NAnt script from the command line and it works perfectly.
I've configured the NAnt build runner in TeamCity, and when I run it, I get the following error:
Step 3/3
The following paths do not contain NAnt:
C:\nant\bin
C:\TeamCity6\buildAgent\work\59c8c293c5dec971\C:\nant\bin
Please check "NAnt home" parameter at the build runner settings page
I've checked many times that the NAnt executable resides in C:\nant\bin
Am I missing something?
Check to make sure the user that team city is running as has permission to that file...
You should have everything you need to build your project (NAnt included) in your repository (Eg. in build\tools folder). Everyone should be able to build after check-out without installing tools.
Nant is complaining about a duplicate target, and as far as I can tell there is no duplicate. Is there some way to get nant to tell me which buildfiles it has open or is trying to open and where these tasks are so I can debug this?
Although I haven't found a reasonable debugging solution, I did find that this was related to updating nant. An old buildscript that worked began to break on a "duplicate target" error. This was because a taskfile was included by 2 other taskfiles already included in the project. nant found two different paths to the same task, and thought it was two distinct tasks and consequently flipped.