I get an error during compilation of my solution: Assembly generation failed -- Referenced assembly 'SimpleConfigSections' does not have a strong name
I get an error during compilation of my solution: Assembly generation failed -- Referenced assembly 'SimpleConfigSections' does not have a strong name
The reason for this is that you didn't use strong naming to sign your assembly. This means I'm forced to use a different kind of Configuration library. Not strong naming my own solution is out of the question.
The code I write in my day-to-day has never called for strongnames. Hey; its open source; feel free to fork or PR in the future :) (Sorry for the late reply - github has not been notifying me of issues in the repo)
One can easily strong name all project references that are not strongly named with the StrongNamer tool. Just add that nuget package to your project and it's done.