QualiSystems / FluentTc

:ocean: :two_men_holding_hands: :office: Integrate with TeamCity fluently
https://www.nuget.org/packages/fluenttc
Apache License 2.0
44 stars 35 forks source link

Publish build artifacts as part of the build #118

Open borismod opened 5 years ago

borismod commented 5 years ago

Issue details

https://github.com/QualiSystems/FluentTc/issues/28

Relates to issue

Connect #28

Checklist

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")