Releases: mavezeau/TeamCitySharp
Releases · mavezeau/TeamCitySharp
Add missing Inherited flag for ArtifactDependency and SnapshotDependency
[TeamCitySharp] - modify last commit string by bool... DESCRIPTION: TEST: REVIEWER: REFERENCES: -TP Task: None -Defect: None -Wiki: None
Added Project Feature support
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
DESCRIPTION: thanks for your contribution Hugener TEST: NA REVIEWER: REFERENCES:
Nuget version 1.0.55
1.0.0: Introduce new GetFields method for choose needed fields on a query.
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