(targetFramework TargetFramework)
| 92 | } |
| 93 | |
| 94 | func (c *Uipcli) getUipcliPath(targetFramework TargetFramework) (string, error) { |
| 95 | moduleManager := plugin.NewModuleManager(c.Logger) |
| 96 | if targetFramework.IsWindowsOnly() { |
| 97 | return moduleManager.Get(plugin.UipCliWindows) |
| 98 | } |
| 99 | return moduleManager.Get(plugin.UipCliCrossPlatform) |
| 100 | } |
| 101 | |
| 102 | func (c *Uipcli) getDotnetPath() (string, error) { |
| 103 | moduleManager := plugin.NewModuleManager(c.Logger) |
no test coverage detected