views:

54

answers:

1

Is it possible to compile a vb.net project into an empty exe file (only containing the header information like version number, company, product name etc) in VS2008?

+1  A: 

No. A managed .exe requires a Main() method.

Hans Passant