2017-06-21 12 views
0

私のコードはVisual Studio Team Servicesリポジトリでホストされていますが、公開されているgitリポジトリを要求しています。どうすればこれを達成できますか? WithPublicGitRepositoryAzureManagement Library VsTをリンクするアプリケーションサービスを作成するgit

try 
{ 
    var app = await azure.WebApps.Define(appName) 
     .WithRegion(newAppService.Region) 
     .WithNewResourceGroup(rgName) 
     .WithNewFreeAppServicePlan() 
     .WithAppSettings(newAppService.AppSettings) 
     .DefineSourceControl() 
     .WithPublicGitRepository("VsTs git url") 
     .WithBranch("master") 
     .Attach() 
     .CreateAsync(); 
    return app.HostNames.First();     
} 
catch (Exception ex) { 
    throw ex; 
} 
+1

@Will更新されたコードを正しくフォーマットで。 – User1911

答えて

0

公開gitリポジトリは、Visual Studioチームサービスでサポートされていない、あなたは、GitHubのように、他の公共のgitリポジトリを使用することができます。

あなたはGitHubのにリポジトリをインポートすることができます。Importing a repository with GitHub Importer

関連する問題