File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -359,9 +359,12 @@ def __unique_project(self, project_hex):
359359 bcl_hex = self .root_node ['buildConfigurationList' ]
360360 self .__unique_build_configuration_list (project_hex , bcl_hex )
361361
362- package_references_list = self .root_node ['packageReferences' ]
363- for package_reference_hex in package_references_list :
364- self .__unique_package_reference (project_hex , package_reference_hex )
362+ try :
363+ package_references_list = self .root_node ['packageReferences' ]
364+ for package_reference_hex in package_references_list :
365+ self .__unique_package_reference (project_hex , package_reference_hex )
366+ except KeyError :
367+ pass
365368
366369 subprojects_list = self .root_node .get ('projectReferences' )
367370 if subprojects_list :
You can’t perform that action at this time.
0 commit comments