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
Back To Top
Search