FluentTc
FluentTc copied to clipboard
Publish build artifacts as part of the build
Issue details
https://github.com/QualiSystems/FluentTc/issues/28
Relates to issue
Connect #28
Checklist
- [X] All unit tests passed on build server
- [X] Acceptance test(s) covers new/modified functionality
- [X] Code coverage is at least the same or higher
- [ ] Breaking change in public API
Example of using new/modified functionality
// To publish a single file
new LocalTc().PublishArtifacts("some.zip")
// To publish a directory
new LocalTc().PublishArtifacts("dir")
// To publish files into a target directory
new LocalTc().PublishArtifacts("file.*", "target_dir")
// To publish files into a target archive
new LocalTc().PublishArtifacts("file.*", "target_archive.zip")