Skip to content

Commit 3b6a9ac

Browse files
Update Program.cs
1 parent 8c4a26f commit 3b6a9ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ClientLibraryConsoleAppSample/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ namespace ClientLibraryConsoleAppSample
1111
class Program
1212
{
1313
//============= Config [Edit these with your settings] =====================
14-
internal const string azDevOrganizationUrl = "https://dev.azure.com/myaccount"; //change to the URL of your Azure DevOps account; NOTE: This must use HTTPS
14+
internal const string azureDevOpsOrganizationUrl = "https://dev.azure.com/organization"; //change to the URL of your Azure DevOps account; NOTE: This must use HTTPS
1515
// internal const string vstsCollectioUrl = "http://myserver:8080/tfs/DefaultCollection" alternate URL for a TFS collection
1616
//==========================================================================
1717

1818
//Console application to execute a user defined work item query
1919
static void Main(string[] args)
2020
{
2121
//Prompt user for credential
22-
VssConnection connection = new VssConnection(new Uri(azDevOrganizationUrl), new VssClientCredentials());
22+
VssConnection connection = new VssConnection(new Uri(azureDevOpsOrganizationUrl), new VssClientCredentials());
2323

2424
//create http client and query for resutls
2525
WorkItemTrackingHttpClient witClient = connection.GetClient<WorkItemTrackingHttpClient>();

0 commit comments

Comments
 (0)