Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Linebreak removed when building project (DevExpress + Resharper installed)

Software

Visual Studio 2012-2013 ReSharper 7-8 (same with both in combination)

Nothing else is installed but general VS updates, DevExpress (not including CodeRush) and ReSharper.

Whenever I remove either plugin the problem is gone.

This issue seems to happen whenever I add a DevExpress grid control to a Form application. So Console applications are fine. The problem doesn't go away whenever I remove the grid control or when I remove the Form all together.

Example

The cursor is in the empty-line below.

private string Test()
{
    MessageBox.Show("Hello!");

    return "Hello!";
}

After building (or running as that builds as well):

private string Test()
{
        MessageBox.Show("Hello!");
        return "Hello!";
}

How would I solve this issue? Let me know if you want more specific details.

PS: I know that this question has been asked before. But this time around it's ReSharper + DevExpress that is causing this issue.

Edit 2014-08-05:

Not resolved yet. I just uninstalled CodeRush in the mean time.

like image 229
Measuring Avatar asked Oct 13 '13 16:10

Measuring


1 Answers

Remove the (DevExpress) licenses.licx file in Properties will fix it.

like image 72
yohan zhou Avatar answered Sep 28 '22 06:09

yohan zhou