Control
|
Description
|
Add new line before opening curly brace ('{')
|
This will add a blank line before any opening curly brace. For instance, when this option unchecked, code would look like this:
if (success) {
...
}
If this option is checked, the same code would look like this:
if (success)
{
...
}
|
Eliminate dependencies on VisualBasic namespace
|
The VisualBasic namespace is often used to simulate functionality that exists in VB 6 and earlier. If you ported your code from VB 6 to VB.Net, there are usually many calls that depend on this namespace. This option will try to eliminate as many dependencies as possible on the VisualBasic namespace by substituting other native .Net methods.
|
Comment out unused private fields, methods, and properties
|
Sometimes unused private fields, methods and properties exist in a class. This option will automatically comment out unnecessary code. This will mean there will be less code for you to maintain!
|
Add comment to classes/methods with missing comments
|
Some development organization have coding conventions that require comments for all class and method declarations. This option will mark any classes and methods with missing comments with "TRANSMISSINGCOMMENT". You can search for this add the necessary code documentation.
|
Help
|
Displays online help.
|
Cancel
|
Closes the Wizard.
|
< Back
|
Moves to the Select Project Page.
|
Next >
|
Moves to the Confirm Selections Page.
|