How can I add an Alias attribute to guests in my Azure AD?
I have a SaaS application that I use SCIM user provisioning with and I want my guests to be fully controlled through my AD. I can map any field from Azure AD to my SaaS app so I want to…
I have a SaaS application that I use SCIM user provisioning with and I want my guests to be fully controlled through my AD. I can map any field from Azure AD to my SaaS app so I want to…
kubectl task failing to deploying manifest files into AKS. pipeline failing with below error ##[error]No configuration file matching /home/vsts/work/1/s/manifests was found. pipeline is working fine with run both stages (Like Build and Deploy) because after build stage it will create…
I am trying to deploy my code to azure app service using git. But I am getting error "deployment Failed with Error: Package deployment using ZIP Deploy failed. Refer logs for more details". It was working perfectly 2 days back…
I`m facing an error when trying to deploy an .NET API project to Azure using Azure App Service Deployment Center. This is the error: Project "D:homesiterepositoryApiCustom.Common.APICustom.Common.API.csproj" on node 1 (Restore target(s)). D:homesiterepositoryApiCustom.Common.APICustom.Common.API.csproj : error MSB4242: SDK Resolver Failure: "The SDK…
I'm running into an issue in Azure Devops. I have two questions regarding the issue. The issue is that I have an Azure Bicep template that deploys a bunch of resources in a resource group within my Azure subscription. One…
I have a requirement to use exactly iOS 14.5 on our pipeline. I tried the following: variables: sdk: 'iphoneos14.5' // I also tried to iphoneos - task: Xcode@5 inputs: actions: 'test' configuration: '$(configuration)' sdk: '$(sdk)' xcWorkspacePath: 'MyProject.xcworkspace' scheme: '$(secondaryScheme)' xcodeVersion:…
I have the following task: - task: DotNetCoreCLI@2 inputs: command: 'build' projects: 'XXX' arguments: '-c "Release" /p:Platform="x64"' and I want to set the outputpath of the build so that I can publish an artifact after compiling. /p:OutputPath="$(build.artifactStagingDirectory)XXX" But when I…
my goal is to have some job steps (docker build and push) to run on every Dockerfile I add in a specific folder. This is the main structure I'm trying: ... stages: - stage: Get_DF_Stage displayName: Get_Dockerfiles jobs: - job:…
for example, I have something like this: - job: Build dependsOn: CheckTest pool: ${{ parameters.setPool }} services: redis: redis rabbitmq: rabbitmq steps: - checkout: self My question is - is it possible to manage services list? For example, for some…
I use an CmdLine@2 task in my azure DevOps pipeline and trying to build the app, but unfortunately the Xcode Build job failed. I'm using SwiftUI classes which need to be at least build with Xcode 12.5, but the azure…