()
| 18 | } |
| 19 | |
| 20 | func (t TargetFramework) IsSupported() (bool, error) { |
| 21 | if t.IsWindowsOnly() && runtime.GOOS != "windows" { |
| 22 | return false, errors.New("UiPath Studio Projects which target windows-only are not support on linux devices. Build the project on windows or change the target framework to cross-platform.") |
| 23 | } |
| 24 | return true, nil |
| 25 | } |
no test coverage detected