Coding Standard Options
Printed From: IdeaBlade
Category: DevForce
Forum Name: DevForce Classic
Forum Discription: For .NET 2.0
URL: http://www.ideablade.com/forum/forum_posts.asp?TID=839
Printed Date: 19-Oct-2025 at 12:23pm
Topic: Coding Standard Options
Posted By: Jaffir
Subject: Coding Standard Options
Date Posted: 12-Jun-2008 at 1:45am
Is there a way to change how DevForce spits out code? For example, i would like for it to spit out code with brackets ({) on separate lines:
method foo(int x){
// Code here..
}
i want this
method foo(int x)
{
// Code here...
}
Thanks..
|
Replies:
Posted By: davidklitzke
Date Posted: 12-Jun-2008 at 2:25pm
As you probably know, there are options in Visual Studio that let you set these formatting choices. While we don't honor these settings ourselves when we generate our own code. It is easy and straightforward to select all of the code that we have generated, and then reformat the code to the standard that you would like to see and use.
|
|