R# 3.0 RC Optimize usings and duplicates directives
I have next code::
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Windows.Forms;
using System;
using ScreenSaver1.Properties;
After optomize::
using System;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Windows.Forms;
using ScreenSaver1.Properties;
Please sign in to leave a comment.
Probably you've prohibited the "System" namespace removing in options....
--
Eugene Pasynkov
Developer
JetBrains, Inc
http://www.jetbrains.com
"Develop with pleasure!"
"Alexander Nesterenko" <framework3705@mail.ru> wrote in message
news:57490f0992a78c9815059316f22@news.jetbrains.com...
>I have next code::
>
>
>
>
>
>
Hello Eugene,
I have System as "namespace to always import", and never saw duplicate namespaces...
Is there anything special about this file?
Sincerely,
Ilya Ryzhenkov
JetBrains, Inc
http://www.jetbrains.com
"Develop with pleasure!"
EP> Probably you've prohibited the "System" namespace removing in
EP> options....
EP>
It's true, but i what delete duplicates.
>
My import options is attachmented. I create ConsoleApplication project, add "using System;" and call optimize usings;
Attachment(s):
imports.GIF