0
私のコードはVisual Studio Team Servicesリポジトリでホストされていますが、公開されているgitリポジトリを要求しています。どうすればこれを達成できますか? WithPublicGitRepository
AzureManagement 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;
}
@Will更新されたコードを正しくフォーマットで。 – User1911