File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -1322,7 +1322,6 @@ enum SpecFileType {
13221322 PSDepend
13231323}
13241324
1325- Update-TypeData - TypeName ModuleFast.ModuleFastInfo - MemberType AliasProperty - MemberName Location - Value Location - Force 2> $null
13261325Update-TypeData - TypeName Nuget.Versioning.NugetVersion - SerializationMethod String - Force
13271326
13281327# endRegion Classes
Original file line number Diff line number Diff line change @@ -269,10 +269,10 @@ public int CompareTo(object? other)
269269 }
270270
271271 private static bool IsRequiredVersion ( VersionRange version ) =>
272- ! ( version . MinVersion != version . MaxVersion ||
273- ! version . HasLowerAndUpperBounds ||
274- ! version . IsMinInclusive ||
275- ! version . IsMaxInclusive ) ;
272+ version . MinVersion == version . MaxVersion &&
273+ version . HasLowerAndUpperBounds &&
274+ version . IsMinInclusive &&
275+ version . IsMaxInclusive ;
276276
277277 public override string ToString ( )
278278 {
You can’t perform that action at this time.
0 commit comments