8

.NET で記述された Windows サービスからhttps://visualstudio.com (以前はhttps://tfs.visualstudio.comhttp://www.tfspreview.comとして知られていた)にアクセスしようとしています。

新しい基本認証を使用したいのですが、その方法が見つかりませんでした。

ブログ投稿Team Foundation Service updates - Aug 27へのリンクがたくさん見つかりましたが、TFS 用の Team Explorer Everywhere Java クライアントを使用しています。

基本認証をサポートする新しいバージョンの TFS .NET オブジェクト モデルはありますか?

ちなみにサービスアカウントで連続ログインしました。この回答は非常に役に立ちました。

4

2 に答える 2

13

まず、少なくともVisual Studio 2012 Update 1がマシンにインストールされている必要があります。クラスを含む更新されたMicrosoft.TeamFoundation.Client.dllアセンブリが含まれていますBasicAuthCredential

これを行うコードは、Buck のブログ投稿 How to connect to Team Foundation Service からのものです。

using System;
using System.Net;
using Microsoft.TeamFoundation.Client;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            NetworkCredential netCred = new NetworkCredential(
                "yourbasicauthusername@live.com",
                "yourbasicauthpassword");
            BasicAuthCredential basicCred = new BasicAuthCredential(netCred);
            TfsClientCredentials tfsCred = new TfsClientCredentials(basicCred);
            tfsCred.AllowInteractive = false;

            TfsTeamProjectCollection tpc = new TfsTeamProjectCollection(
                new Uri("https://YourAccountName.visualstudio.com/DefaultCollection"),
                tfsCred);

            tpc.Authenticate();

            Console.WriteLine(tpc.InstanceId);
        }
    }
}
于 2013-02-01T10:35:09.750 に答える