File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1669,8 +1669,9 @@ internal static List<Dependency> ParseContainerRegistryDependencies(JsonElement
16691669 }
16701670
16711671 depVersionRange = new VersionRange (
1672- minVersion : depNuGetVersion ,
1673- includeMinVersion : true ) ;
1672+ minVersion : depNuGetVersion ,
1673+ includeMinVersion : true
1674+ ) ;
16741675 }
16751676 else if ( dependency . TryGetProperty ( "RequiredVersion" , out JsonElement depRequiredVersionElement ) )
16761677 {
@@ -1686,10 +1687,11 @@ internal static List<Dependency> ParseContainerRegistryDependencies(JsonElement
16861687 }
16871688
16881689 depVersionRange = new VersionRange (
1689- minVersion : depNuGetVersion ,
1690- includeMinVersion : true ,
1691- maxVersion : depNuGetVersion ,
1692- includeMaxVersion : true ) ;
1690+ minVersion : depNuGetVersion ,
1691+ includeMinVersion : true ,
1692+ maxVersion : depNuGetVersion ,
1693+ includeMaxVersion : true
1694+ ) ;
16931695 }
16941696 }
16951697
You can’t perform that action at this time.
0 commit comments