Is there a way to remove items in code generated in Codedom from VB code?
For example at the top of all the code I generate, it has:
'------------------------------------------------------------------------------ ' ' This code was generated by a tool. ' Runtime Version:4.0.30319.1 ' ' Changes to this file may cause incorrect behavior and will be lost if ' the code is regenerated. ' '------------------------------------------------------------------------------ Option Strict Off Option Explicit On
I'd like both of these to go away - the commented text and the both the Option xxx
. I've tried toying around with CodeGeneratorOptions
, but have not been able to remove the above from generated code.