I am using style cop and getting an error in vs 2015 for my c# code
Severity Code Description Project File Line Suppression State Error SP2001 : StyleCopPlus.StyleCopPlus : Only tab characters are allowed to be used for indentation.
So I have selected the content and Go to
Edit >> Advanced >> Tabify the selected lines
And run style cop and getting the error
Severity Code Description Project File Line Suppression State Error SA1027 : CSharp.Spacing : Tabs are not allowed. Use spaces instead.
I don't know how to solve it, Can anyone help me on this?
I have corrected it by refering this document
I have disabled rule SA1027: TabsMustNotBeUsed in the spacing rules
And I have untabiy the code.