0
votes

I'm developing serverless function on .NET core runtime 2.0 using Visual Studio 2019, where I am using App Service Settings for local + remote testing in Azure, but I can't find a way how to transform these settings in DevOps Pipeline so I can deploy it with production settings to production resource group in Azure. Is there any way how to do that, or am I doing it wrong? Sadly, somehow I can't find my answers on Google...

Is there someone who can help me with it?

1
“Is there someone who can help me?” is not a question we can answer. - Dour High Arch
Nice to see that you have already prepared this phrase in clipboard... I think there is no space to be polite. Anyway. Since .net core 2.0 function app doesn't have any kind of remote settings in solution, so I can't do it with substitution I used before, but another way I can't find... How can I do this with .net core 2.0 function app? I hope this question is good enough - mslouka
You could use an ARM template to deploy the settings (or from the Portal). That way the code you deploy using the pipeline is independent of the environment into which you deploy it. You can also encrypt the settings and pull them from a key-vault. - Ian Mercer
This is perfect, I will go with that ARM template. Thank you so much - mslouka

1 Answers