This question is locked. New answers and comments are not allowed.
I have just created a class in a project and pasted in some code from another file.
At this point, the usings block looked like this ...
I've marked the assemblies that JC wanted to remove.
After selecting "Fix Usings" my usings block read like this ...
JC had just added System.Web.Query.Dynamic and immediately decided it wasn't needed! Selecting "Fix Usings" a 2nd time removed it.
A little odd, dontcha think?
--
Stuart
At this point, the usings block looked like this ...
using System;using System.Collections.Generic;using System.Linq; // marked as not usedusing System.Web; // marked as not usedusing System.Web.UI;using System.Web.UI.WebControls; // marked as not usedI've marked the assemblies that JC wanted to remove.
After selecting "Fix Usings" my usings block read like this ...
using System;using System.Collections.Generic;using System.Linq;using System.Web.Query.Dynamic; // marked as not usedusing System.Web.UI;using Telerik.Web;using Telerik.Web.UI;JC had just added System.Web.Query.Dynamic and immediately decided it wasn't needed! Selecting "Fix Usings" a 2nd time removed it.
A little odd, dontcha think?
--
Stuart