I am trying to convert a project into .net core. It uses a 3rd part dll which I cannot change.
This 3rd part dll reads from the app.config file.
I added an app.config to my .dt net core project so that the values the 3rd party dll can be read. This worked fine but the WCF config is causing me issues. I keep getting unrecgnised section error for the WCF config.
Is there a nuget package I can add to resolve this? Or is there another way I can work around this issue?
Dotnet core does not support the old wcf library. If your third party dll, uses wcf, then it’s not compatible. You will need a new release of the dll, or stick with the old framework.
Member
15 Points
30 Posts
.core third part dll, app.config
Jun 08, 2020 09:18 AM|priteshmp|LINK
Hi,
I am trying to convert a project into .net core. It uses a 3rd part dll which I cannot change.
This 3rd part dll reads from the app.config file.
I added an app.config to my .dt net core project so that the values the 3rd party dll can be read. This worked fine but the WCF config is causing me issues. I keep getting unrecgnised section error for the WCF config.
Is there a nuget package I can add to resolve this? Or is there another way I can work around this issue?
Thank you..
All-Star
58114 Points
15633 Posts
Re: .core third part dll, app.config
Jun 08, 2020 02:11 PM|bruce (sqlwork.com)|LINK
Dotnet core does not support the old wcf library. If your third party dll, uses wcf, then it’s not compatible. You will need a new release of the dll, or stick with the old framework.