Reporter | christiaan Baes (chrissie11306834885318) |
---|---|
Created | Jan 24, 2012 5:43:18 PM |
Updated | Jan 24, 2012 6:40:09 PM |
Priority | Show-stopper |
Type | Unspecified |
Fix versions | No Fix versions |
State | Submitted |
Assignee | Victor Kropp (victor.kropp) |
Subsystem | No subsystem |
Affected versions | 6.1 |
Fixed in build | No Fixed in build |
When I do the replace in Search with pattern and I don't select the shorten references checkbox it still shortens references. The file in attachement shows the pattern I have selected.
I then have this in my code.
builder.RegisterType(Of Winforms.CaseManagement.View.Forms.Interfaces.ICases).As(Of Winforms.CaseManagement.View.Forms.FrmCases).SingleInstance()
I get this as the result, with the much needed imports inserted.
builder.RegisterType(Of FrmCases).As(Of ICases).SingleInstance()
but I should have gotten this as the result.
builder.RegisterType(Of Winforms.CaseManagement.View.Forms.FrmCases).As(Of Winforms.CaseManagement.View.Forms.Interfaces.ICases).SingleInstance()
I then have this in my code.
builder.RegisterType(Of Winforms.CaseManagement.View.Forms.Interfaces.ICases).As(Of Winforms.CaseManagement.View.Forms.FrmCases).SingleInstance()
I get this as the result, with the much needed imports inserted.
builder.RegisterType(Of FrmCases).As(Of ICases).SingleInstance()
but I should have gotten this as the result.
builder.RegisterType(Of Winforms.CaseManagement.View.Forms.FrmCases).As(Of Winforms.CaseManagement.View.Forms.Interfaces.ICases).SingleInstance()