()
| 14 | ) |
| 15 | |
| 16 | func (t TargetFramework) IsWindowsOnly() bool { |
| 17 | return t == TargetFrameworkWindows || t == TargetFrameworkLegacy |
| 18 | } |
| 19 | |
| 20 | func (t TargetFramework) IsSupported() (bool, error) { |
| 21 | if t.IsWindowsOnly() && runtime.GOOS != "windows" { |
no outgoing calls
no test coverage detected