Skip to content

Releases: mavezeau/TeamCitySharp

Add missing Inherited flag for ArtifactDependency and SnapshotDependency

06 Aug 12:50
Compare
Choose a tag to compare
[TeamCitySharp] - modify last commit string by bool...

DESCRIPTION:

TEST:

REVIEWER:

REFERENCES:
-TP Task: None
-Defect: None
-Wiki: None

Added Project Feature support

09 Apr 19:06
Compare
Choose a tag to compare

New method available:
ProjectFeatures GetProjectFeatures(string projectLocatorId);
ProjectFeature GetProjectFeatureByProjectFeature(string projectLocatorId, string projectFeatureId);
ProjectFeature CreateProjectFeature(string projectId, ProjectFeature projectFeature);
void DeleteProjectFeature(string projectId, string projectFeatureId);

1.0.58: [TeamcitySharp] - Added missing documentation after previous merge

21 Mar 21:56
Compare
Choose a tag to compare
DESCRIPTION:
thanks for your contribution Hugener

TEST:
NA

REVIEWER:

REFERENCES:

Nuget version 1.0.55

08 Mar 21:15
Compare
Choose a tag to compare

NuGet version (TeamCitySharp-forked-mavezeau)
On the version 1.0.55

  • Code cleanup
  • Add support to fetch ArtifactDenpdencies and SnapshotDependencies from buildType
  • Exposing the "Download Logs" call from TeamCity
  • Add Disabled flag on the triggers field and DomainEntities
  • Added missing flag for VcsRootsField

1.0.0: Introduce new GetFields method for choose needed fields on a query.

26 Jan 18:33
Compare
Choose a tag to compare
Use fields specializations: Extract complex objects for specified Fields

Sample:
    // For each builds get only the Id, Number, Status and StartDate
    var buildField = BuildField.WithFields(id: true,number:true, status: true, startDate: true);
    var buildsFields = BuildsField.WithFields( buildField: buildField);
    var currentListBuild = client.Builds.GetFields(buildsFields.ToString()).ByBuildConfigId(currentProjectId)

Update nuget package

and changing tab spacing to 2 spaces.

Changing the assembly to 1.0.0