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
{{ message }}
This repository was archived by the owner on Jul 15, 2023. It is now read-only.
- [x] Change all text, strings, and other resources which refer to Visual Studio Team Services [VSTS] to refer to Azure DevOps instead.
- [x] Change the VisualStudioTeamServices namespace and type names from Visual Studio Team Services / VSTS to Azure DevOps.
- [x] Change the VisualStudioTeamServices named projects to AzureDevops. Update all solution and cross-project references to accomodate for the changes.
- [x] Change the VisualStudioTeamServices named projects to AzureDevops. Update all solution and cross-project references to accomodate for the changes.
- [x] Move all files from 'VisualStudioTeamServices' into 'AzureDevOps' folders.
- [x] Update all solution and project references.
- [x] Update test data to use the new "Devops" name.
- [x] Since users won't be ready to update their branded configuration values, we need to retain support for the VSTS branded options; which emitting a warning for the deprecated option usage.
/// Creates an interactive logon session, using ADAL secure browser GUI, which enables users to authenticate with the Azure tenant and acquire the necessary access tokens to exchange for a VSTS personal access token.
82
+
/// Creates an interactive logon session, using ADAL secure browser GUI, which enables users to authenticate with the Azure tenant and acquire the necessary access tokens to exchange for an Azure DevOps Services personal access token.
83
83
/// <para/>
84
84
/// Tokens acquired are stored in the secure secret stores provided during initialization.
85
85
/// <para/>
86
86
/// Return a `<see cref="Credential"/>` for resource access if successful; otherwise `<see langword="null"/>`.
87
87
/// </summary>
88
-
/// <param name="targetUri">The URI of the VSTS resource.</param>
88
+
/// <param name="targetUri">The URI of the Azure DevOps resource.</param>
@@ -110,13 +110,13 @@ public async Task<Credential> InteractiveLogon(TargetUri targetUri, PersonalAcce
110
110
}
111
111
112
112
/// <summary>
113
-
/// Creates an interactive logon session, using ADAL secure browser GUI, which enables users to authenticate with the Azure tenant and acquire the necessary access tokens to exchange for a VSTS personal access token.
113
+
/// Creates an interactive logon session, using ADAL secure browser GUI, which enables users to authenticate with the Azure tenant and acquire the necessary access tokens to exchange for an Azure DevOps personal access token.
114
114
/// <para/>
115
115
/// Tokens acquired are stored in the secure secret stores provided during initialization.
116
116
/// <para/>
117
117
/// Return a `<see cref="Credential"/>` for resource access if successful; otherwise `<see langword="null"/>`.
118
118
/// </summary>
119
-
/// <param name="targetUri">The URI of the VSTS resource.</param>
119
+
/// <param name="targetUri">The URI of the Azure DevOps resource.</param>
120
120
/// <param name="requestCompactToken">
121
121
/// Requests a compact format personal access token if `<see langword="true"/>`; otherwise requests a standard format personal access token.
/// Uses Active Directory Federation Services to authenticate with the Azure tenant non-interactively and acquire the necessary access tokens to exchange for a VSTS personal access token.
150
+
/// Uses Active Directory Federation Services to authenticate with the Azure tenant non-interactively and acquire the necessary access tokens to exchange for an Azure DevOps personal access token.
151
151
/// <para/>
152
152
/// Tokens acquired are stored in the secure secret stores provided during initialization.
153
153
/// <para/>
154
154
/// Return a `<see cref="Credential"/>` for resource access if successful; otherwise `<see langword="null"/>`.
155
155
/// </summary>
156
-
/// <param name="targetUri">The URL of the VSTS resource.</param>
157
-
/// <param name="options">Options related to VSTS personal access creation.</param>
156
+
/// <param name="targetUri">The URL of the Azure DevOps resource.</param>
157
+
/// <param name="options">Options related to Azure DevOps personal access creation.</param>
@@ -171,21 +171,21 @@ public async Task<Credential> NoninteractiveLogon(TargetUri targetUri, PersonalA
171
171
}
172
172
catch(AuthenticationException)
173
173
{
174
-
Trace.WriteLine($"failed to acquire for '{targetUri}' token from VstsAuthority.");
174
+
Trace.WriteLine($"failed to acquire for '{targetUri}' token from Azure DevOps Authority.");
175
175
}
176
176
177
177
Trace.WriteLine($"non-interactive logon for '{targetUri}' failed");
178
178
returnnull;
179
179
}
180
180
181
181
/// <summary>
182
-
/// Uses Active Directory Federation Services to authenticate with the Azure tenant non-interactively and acquire the necessary access tokens to exchange for a VSTS personal access token.
182
+
/// Uses Active Directory Federation Services to authenticate with the Azure tenant non-interactively and acquire the necessary access tokens to exchange for an Azure DevOps Services personal access token.
183
183
/// <para/>
184
184
/// Tokens acquired are stored in the secure secret stores provided during initialization.
185
185
/// <para/>
186
186
/// Return a `<see cref="Credential"/>` for resource access if successful; otherwise `<see langword="null"/>`.
187
187
/// </summary>
188
-
/// <param name="targetUri">The URL of the VSTS resource.</param>
188
+
/// <param name="targetUri">The URL of the Azure DevOps resource.</param>
189
189
/// <param name="requestCompactToken">
190
190
/// Requests a compact format personal access token if `<see langword="true"/>`; otherwise requests a standard format personal access token.
0 commit comments