Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using the Power Commands extension with Visual Studio 2012. I have the option checked to remove and sort usings on save. The problem is that the System.Xxx directives are being sorted last, and that's causing a style analysis error:

SA1208: System using directives must be placed before all other using directives.

Before save:

using System;
using System.Diagnostics.CodeAnalysis;
using Foo;

After save:

using Foo;
using System;
using System.Diagnostics.CodeAnalysis;

This worked correctly (System.Xxx first) with VS 2010. Anyone know how to correct this?

Note: Even if it didn't cause an SA error, I'd still prefer the system directives to be first.

share|improve this question
Is there a VS2012 version of PowerCommands yet? This might be an issue that needs attention and thus worth reporting. – Jeff Bridgman Oct 3 '12 at 19:27

1 Answer

up vote 27 down vote accepted

Goto the "Quick Launch" (Ctrl+Q) and type "using" and press Enter.

Then change the following setting:

Using Sorting option

It's an annoying default setting, I have no idea why Microsoft chose that, it goes against all previous standards that I've ever seen.

EDIT: Thanks to Oskar we have a reason:

The reason for the change in default behavior is due to the fact that Windows App Store applications prefer to have 'Windows.' at the top of the file rather than 'System.'

share|improve this answer
Perfect. Thanks! – Bob Horn Oct 3 '12 at 19:30
2  
I've found an answer to why Microsoft change the default behavior: "The reason for the change in default behavior is due to the fact that Windows App Store applications prefer to have 'Windows.*' at the top of the file rather than 'System.*'" (connect.microsoft.com/VisualStudio/feedback/details/775702/…) – Oskar Apr 4 at 15:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.