I'm using Ninject in a SharePoint feature. I've got it working via an HttpModule.
I need to tell Ninject whether I want to use my real or "fake" implementations.
I'm thinking about using a web.config appSetting value to drive that decision. My thinking is that the modification I manually make to my dev SP instance's web.config won't make it into source control or the deployed package.
I understand that manual web.config changes are a no-no in SP. Is this a valid exception?
Where do you put values that you want to exist only in your development environment?