I am trying to port our existing .NET 4.6.1 class library to .NET Standard 2.1.
Most of the dependencies are resolved. However I am unsure what to do with the System.Web.Configuration.
Our current code has something like this:
config = WebConfigurationManager.OpenWebConfiguration("~/");
- How to include the dependency with System.Web.Configuration to my project?
- How to change the code to remove this dependency?