Skip to content

Commit 7212d8f

Browse files
committed
Updated version to 2.4.0
* Updated version. * Fixed wrong query params setup.
1 parent 2c1b1f0 commit 7212d8f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

contrast-rest-dotnet/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("2.3.0.0")]
35-
[assembly: AssemblyFileVersion("2.3.0.0")]
34+
[assembly: AssemblyVersion("2.4.0.0")]
35+
[assembly: AssemblyFileVersion("2.4.0.0")]

contrast-rest-dotnet/TeamServerClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ public OrganizationManagedResponse GetOrganizationInfo(string organizationId, Li
457457
string endpoint = String.Format(NgEndpoints.ORGANIZATION_INFORMATION, organizationId);
458458
if (expand?.Count > 0)
459459
{
460-
endpoint = "?expand=" + String.Join(",", expand);
460+
endpoint += "?expand=" + String.Join(",", expand);
461461
}
462462
return GetResponseAndDeserialize<OrganizationManagedResponse>(endpoint);
463463
}

0 commit comments

Comments
 (0)