skip to Main Content

How to set Environment Variable for Azure Service Fabric application through Azure DevOps pipelines

Our team has a Service Fabric application that has an environment variable defined in the ServiceManifest.xml file called connectionString <!-- Code package is your service executable. --> <CodePackage Name="Code" Version="1.0.0"> <EntryPoint> <ExeHost> <Program>myMMAPI.exe</Program> <WorkingFolder>CodePackage</WorkingFolder> </ExeHost> </EntryPoint> <EnvironmentVariables> <EnvironmentVariable Name="ASPNETCORE_ENVIRONMENT" Value=""/>…

VIEW QUESTION

Azure DevOps YAML Split & Each – Ubuntu

We have variable group in Pipeline and it has below input Input: Instance1,Instance2,Inastance3 Expected Output: Instance1 Instance2 Inastance3 We tried below YAML Code trigger: - main pool: vmImage: ubuntu-latest variables: - group: "DevInstanceList" - name: InstancesList value: $[variables.Instances] steps: -…

VIEW QUESTION
Back To Top
Search