-
Input (pre-NArrange):
Private Shared Function getProcessedFiles(ByRef rfs As List(Of ReportFile)) As String(,)
Output (post-NArrange):
Private Shared Function getProcessedFiles(ByRef rfs As List(Of ReportFile)) As String(
,)
Compilation then fails because of a newline being inserted immediately after the open parametheses and before the comma.
2009-11-05 20:03:13 UTC by nobody
-
I've been trying to run NArrange against my growing code base and ran into the following error. If I have a code lines like so:
'''
''' Encapsulate the definition of the structure of the claim.
'''
'''
Private Structure Claim
Public fileNum As String, fileDate As String, groupNum As String...
2009-11-05 20:00:10 UTC by nobody
-
Probably a configuration issue. Put a space between a field and the attribute(s) of the next field
Current situation :
public GeneralSettings Settings = new GeneralSettings();
[XmlArray("Requirements")]
[XmlArrayItem("Requirement", typeof(Requirement))]
public List Requirements
Proposed situation:
public GeneralSettings Settings = new GeneralSettings();...
2009-10-14 12:12:08 UTC by nobody
-
Thank you for providing the sample C# file.
2009-10-13 18:04:39 UTC by jamesnies
-
A fix for this will be available in the upcoming 0.2.9 release.
2009-10-13 18:02:47 UTC by jamesnies
-
Duplicate of bug 2876861.
2009-10-13 18:00:42 UTC by jamesnies
-
jamesnies committed revision 166 to the NArrange - .NET Code Organizer/Formatter SVN repository, changing 1 files.
2009-10-13 15:42:20 UTC by jamesnies
-
jamesnies committed revision 165 to the NArrange - .NET Code Organizer/Formatter SVN repository, changing 4 files.
2009-10-13 15:37:12 UTC by jamesnies
-
Also see AmitConfig.xml file - attached as a different file.
2009-10-12 06:03:54 UTC by kakaiya
-
See attached files with config file.
2009-10-12 05:29:52 UTC by kakaiya