I have:
namespace My.Namespace.Admin.Presenter
{
using System;
using System.Collections.Specialized;
using System.Globalization;
using My.Framework.Utility;
using My.Namespace.Core.Business.Admin;
using My.Namespace.Core.Entities.Admin;
...
}
In Visual Studio 2015, this is flagged as an improvement by the lightbulb IDE0001: Name Can by Simplified for
My.Framework.Utility
toFramework.Utility
My.Namespace.Core.Business.Admin
toCore.Business.Admin
My.Namespace.Core.Entities.Admin
toCore.Entities.Admin
I don't like the lighbulbs suggestion, how can I turn it off? There doesn't seem to be a global setting for these and clicking the IDE0001 error just performs a bing search rather than a dedicated help page.
This question deals with another issue flagged by IDE0001, but not the namespacing.