We have a referenced project in azure function app
project. The referenced assembly is a data service
project which is referred to by web api
project too.
When referenced in web-api
project the data service project
automatically refers to web.config
file for connection strings and app settings. While in azure functions app
the data service
project is not able to locate the connection strings stored in local.settings.json
file.
- How to address this issue locally?
- How to address the issue in production?
NOTE: Would like to have DRY approach here.