| 24 | ) |
| 25 | |
| 26 | type DcomVisualStudioDte struct { |
| 27 | Dispatch |
| 28 | // Is2019 indicates that the installation is Visual Studio 2019 |
| 29 | Is2019 bool |
| 30 | // CommandName is the name of the DTE command to invoke |
| 31 | CommandName string |
| 32 | // CommandArgs are the arguments to pass to the command |
| 33 | CommandArgs string |
| 34 | } |
| 35 | |
| 36 | func (m *DcomVisualStudioDte) Init(ctx context.Context) (err error) { |
| 37 | if err = m.Dcom.Init(ctx); err == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected