I have created a new ASP.NET Core web application in Visual Studio 2015. I\'ve also set up an Azure web app to pull in the app from GitHub and run it. This works fine, but I
I think you are looking for SlotSticky Settings
Use this command in Azure PowerShell to set 2 app settings as sticky to the slot
Set-AzureWebsite -Name mysite -SlotStickyAppSettingNames @("myslot", "myslot2")
And this command to set 2 connection strings as sticky to the slot
Set-AzureWebsite -Name mysite -SlotStickyConnectionStringNames @("myconn", "myconn2")