in plugin-dotnet-agent/src/main/kotlin/jetbrains/buildServer/dotnet/discovery/SdkRegistryProvider.kt [122:133]
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (javaClass != other?.javaClass) return false
other as Sdk
if (toolInstanceType != other.toolInstanceType) return false
if (platform != other.platform) return false
if (baseVersion != other.baseVersion) return false
return true
}