multilspy supported platforms
| 160 | Path.unlink(Path(tmp_file_name)) |
| 161 | |
| 162 | class PlatformId(str, Enum): |
| 163 | """ |
| 164 | multilspy supported platforms |
| 165 | """ |
| 166 | WIN_x86 = "win-x86" |
| 167 | WIN_x64 = "win-x64" |
| 168 | WIN_arm64 = "win-arm64" |
| 169 | OSX = "osx" |
| 170 | OSX_x64 = "osx-x64" |
| 171 | OSX_arm64 = "osx-arm64" |
| 172 | LINUX_x86 = "linux-x86" |
| 173 | LINUX_x64 = "linux-x64" |
| 174 | LINUX_arm64 = "linux-arm64" |
| 175 | LINUX_MUSL_x64 = "linux-musl-x64" |
| 176 | LINUX_MUSL_arm64 = "linux-musl-arm64" |
| 177 | |
| 178 | class DotnetVersion(str, Enum): |
| 179 | """ |