.NET Runtime
.NET: Microsoft Technologies based on the .NET software framework.Runtime: An environment required to run apps that aren't compiled to machine language.
1,178 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
We are using C# rest API to create the pipeline for multi tenant application.
string PipelineURL = string.Format("https://dev.azure.com/{0}/{1}/_apis/pipelines?api-version=6.0",
ConfigurationManager.AppSettings["OrganizationName"].ToString(), ConfigurationManager.AppSettings["ProjectName"].ToString());
var postData = new
{
folder = "",
name = Name,
configuration = new
{
type = "yaml",
path= "/azure-pipelines.yml",
repository = new
{
id = "repo-id",
name = "repo-name",
type = "azureReposGit"
}
}
};
Using above Pipeline URL and input, able to create pipeline. But how can we pass custom YAML string as input instead of path.
Unfortunately we do not provide support for Azure DevOps here at this time. Please continue to use their official support channel defined over here.