Is there a way to save/archive multiple artifacts from the same build?
Jenkins only allows a single \'Archive the Artifacts\' post build step, and grey\'s out the option
You can comma separate the paths, like this:
XXX.UnitTests\bin\Release\**.* , XXX.WriteAPI.Service/bin/Release/**.*
Then you get two separate artifacts.
See http://ant.apache.org/manual/Types/fileset.html for details of the Ant Pattern syntax.