Indeed, I can reproduce this.
Imports System
' __LLBLGENPRO_USER_CODE_REGION_START AdditionalImports
' __LLBLGENPRO_USER_CODE_REGION_END
Public Class Foo
End Class
Looking at the code which actually produces the output:
Imports SD.LLBLGen.Pro.GeneratorCore
Imports SD.LLBLGen.Pro.ApplicationCore
Imports SD.LLBLGen.Pro.ApplicationCore.Tasks
Imports System
Imports SD.LLBLGen.Pro.ApplicationCore.TypedViews
Imports SD.LLBLGen.Pro.LptParser
Imports System.Collections
Imports SD.LLBLGen.Pro.ApplicationCore.Entities
Imports Microsoft.VisualBasic
Imports SD.LLBLGen.Pro.ApplicationCore.TypedLists
Imports SD.LLBLGen.Pro.ApplicationCore.StoredProcedures
Imports System.Collections.Generic
Imports System.ComponentModel
Imports SD.LLBLGen.Pro.DBDriverCore
Imports SD.LLBLGen.Pro.ApplicationCore.Templates
Imports System.IO
Public Class SD_UserRegion
Implements ITemplateClass
Private __outputWriter As StreamWriter
Private _executingGenerator As IGenerator
Private _parameters As Dictionary(Of String, TaskParameter)
Private _activeObject As Object
Public Sub New ()
__outputWriter=Nothing
_executingGenerator=Nothing
_parameters=Nothing
_activeObject=Nothing
End Sub
Private Sub __ScriptCode()
__outputWriter.Write("Imports System" & vbCrLf )
__outputWriter.Write( DotNetTemplateEngine.GetUserCodeRegion("AdditionalImports","'") )
__outputWriter.Write( vbCrLf & vbCrLf & "Public Class Foo" & vbCrLf & vbCrLf & "End Class")
End Sub
Public Sub ___RUN(executingGenerator As IGenerator, parameters As Dictionary(Of String, TaskParameter), outputWriter As StreamWriter, activeObject As Object) Implements ITemplateClass.___RUN
__outputWriter = outputWriter
_parameters = parameters
_executingGenerator=executingGenerator
_activeObject=activeObject
__ScriptCode()
End Sub
End Class
It shows that there's no preceding tab in the output. So something's wrong in the GetUserCodeRegion method. Looking into it
(edit) The code always prefixes the emitted region with a tab. This has been this way since forever. There's no info why this is done this way, I'm sorry (change logs didn't reveal why this was done this way, it's been this way since the beginning of this method, which was first added in 1.0.2005.1). It's been somewhat of a struggle to make the output always in the form as expected, and this tab is overlooked.
I'll add a change request for v3, so it will get re-examined why it isn't emitting the output without a tab.