com.jetbrains.plugin.structure.dotnet.version.VersionRange.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of structure-dotnet Show documentation
Show all versions of structure-dotnet Show documentation
Library for parsing JetBrains DotNet plugins. Can be used to verify that plugin complies with JetBrains Marketplace requirements.
package com.jetbrains.plugin.structure.dotnet.version
import com.jetbrains.plugin.structure.base.utils.Version
import com.jetbrains.plugin.structure.dotnet.NugetSemanticVersion
interface VersionRange>
data class ReSharperRange(val min: ReSharperVersion?, val isMinIncluded: Boolean, val max: ReSharperVersion?, val isMaxIncluded: Boolean): VersionRange
data class NugetSemanticVersionRange(val min: NugetSemanticVersion?, val isMinIncluded: Boolean, val max: NugetSemanticVersion?, val isMaxIncluded: Boolean): VersionRange