You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a user I would like to be able to download artifacts using fluent API with build locators
Test to reproduce
_Pleaseprovide necessary steps for reproduction of this issue_.[Test]publicvoidDownloadArtifacts_ByBuildConfiguration_Status(){IList<string>downloadedFiles=newRemoteTc(c =>c.ToHost("HOST").AsGuest()).DownloadArtifacts(build =>build.BuildConfiguration(with =>with.Id("FluentTc")).Status(BuildStatus.Success),@"C:\DownloadedArtifacts");}[Test]publicvoidDownloadArtifacts_ByBuildId(){IList<string>downloadedFiles=newRemoteTc(c =>c.ToHost("HOST").AsGuest()).DownloadArtifacts(build =>build.Id(12345),@"C:\DownloadedArtifacts");}
The text was updated successfully, but these errors were encountered:
Feature Request
As a user I would like to be able to download artifacts using fluent API with build locators
Test to reproduce
The text was updated successfully, but these errors were encountered: