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.UtilitytoFramework.UtilityMy.Namespace.Core.Business.AdmintoCore.Business.AdminMy.Namespace.Core.Entities.AdmintoCore.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.

