(string[] args)
| 26 | static StartupOption opt; |
| 27 | |
| 28 | public static int Main(string[] args) |
| 29 | { |
| 30 | var pg = new Program(); |
| 31 | try { |
| 32 | return pg.main(args); |
| 33 | } catch (Exception ex) { |
| 34 | // NB: Normally this is a terrible idea but we want to make |
| 35 | // sure Setup.exe above us gets the nonzero error code |
| 36 | Console.Error.WriteLine(ex); |
| 37 | return -1; |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | int main(string[] args) |
| 42 | { |