Okay, I was able to recompile by creating a new "Settings.StyleCop" file and saving the other one under a different name.
<StyleCopSettings Version="105">
<GlobalSettings>
<BooleanProperty Name="RulesEnabledByDefault">False</BooleanProperty>
</GlobalSettings>
</StyleCopSettings>
But here's my question to the developers of Ablecommerce, a majority of the errors I'm getting are because my developers decided code using his preferred style, would this be considered correct or incorrect? A majority of the error seem to be evolving around the developers use of "//".
Here are some of the errors below, as a person that's trying to learn I would appreciate any valuable input to these issues.
CSharp.Layout : A single-line comment must be preceded by a blank line or another single-line comment, or must be the first item in its scope. To ignore this error when commenting out a line of code, begin the comment with '////' rather than '//'.
CSharp.Layout : A closing curly bracket must not be preceded by a blank line.
CSharp.Documentation : The property must have a documentation header.
CSharp.Documentation : The partial class element must have a documentation header containing either a summary tag or a content tag.
Thank you for anyone replying with knowledgeable information, just trying to learn.Update information:What is extremely strange about this problem is the following: if I log into our Git repository, download and save the code as a zip file, unzip and them rebuilt, all seems to work fine, no error messages. Of course at this point there is no repository attached to the code.
BUT
If I do a checkout, regardless if I'm pulling into a a new empty directory or over the existing project, then try to rebuild, the errors occur. Please note that these errors never occurred before. I also understand, if there was a problem with the code, it would not rebuilt or compile, but this is just being too picky here. Look forward to some information regarding this.
Edited by user Wednesday, July 7, 2021 10:23:01 PM(UTC)
| Reason: Not specified