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
* Update obsolete API
* Remove automated tweet
* Add new New-TfsUser cmdlet
* Update build tasks to use PowerShell 7
* Remove docgen from build
* Build before debug
* Add alias
* Update manifest version
* User three-part version for WinGet package
* Revert change
* Move JSON-related extensions to separate file
* Rename property to avoid conflict with DisplayName arguments
* Move template-based API call support to IRestApiService
* Add automatic conversion of JSON objects to PowerShell format
* Add new cmdlet
* Add Remove-TfsUser
* Fix typo
* Update release notes
+semver: minor
* Add proper support for project/team parameters
TfsCmdlets version ${{ env.BUILD_NAME }} has just been released. Check it out! https://github.com/igoravl/TfsCmdlets/releases/tag/v${{ env.RELEASE_TAG }}
# TfsCmdlets version ${{ env.BUILD_NAME }} has just been released. Check it out! https://github.com/igoravl/TfsCmdlets/releases/tag/v${{ env.RELEASE_TAG }}
/// <param name="requestContentType">The request content type (default is "application/json").</param>
22
+
/// <param name="responseContentType">The response content type (default is "application/json").</param>
23
+
/// <param name="additionalHeaders">Additional headers to include in the request (optional).</param>
24
+
/// <param name="apiVersion">The API version (default is "4.1").</param>
25
+
/// <param name="project">A delegate that returns the TeamProject, used only when there is a {project}/{projectId} parameter in the template URL (optional).</param>
26
+
/// <param name="team">A function that returns the Team, used only when there is a {team}/{teamId} parameter in the template URL (optional).</param>
27
+
/// <param name="customServiceHost">The custom service host (optional).</param>
28
+
/// <returns>A task representing the asynchronous operation.</returns>
29
+
Task<HttpResponseMessage>InvokeTemplateAsync(
30
+
Models.Connectionconnection,
31
+
stringapiTemplate,
32
+
stringbody=null,
33
+
stringmethod="GET",
34
+
IDictionaryqueryParameters=null,
35
+
stringrequestContentType="application/json",
36
+
stringresponseContentType="application/json",
37
+
Dictionary<string,string>additionalHeaders=null,
38
+
stringapiVersion="4.1",
39
+
Func<WebApiTeamProject>project=null,
40
+
Func<Models.Team>team=null,
41
+
stringcustomServiceHost=null);
42
+
43
+
/// <summary>
44
+
/// Invokes an Azure DevOps REST API endpoint asynchronously.
0 commit comments