Netcode for Entities 1.0.17 HierarchyPrefabType missing reference in unity 2023.3 (315938)

Just installing the package for ECS netcode give me, any solutions?:

Library\PackageCache\com.unity.netcode@1.0.17\Editor\Authoring\HierarchyDrawers.cs(66,59): error CS0234: The type or namespace name ‘HierarchyPrefabType’ does not exist in the namespace ‘Unity.Hierarchy’ (are you missing an assembly reference?)

Go to: "<project-path>\Library\PackageCache\com.unity.netcode@1.0.17\Editor\Authoring\HierarchyDrawers.cs" Around like 65/66 you need to find the isReplicated = item.PrefabType != ... line and replace with: isReplicated = item.PrefabType != Unity.Entities.Editor.Hierarchy.HierarchyPrefabType.None; (NOTE: Package Manager overwrites stuff in your cache, so your fix will get overwritten at some point. Make it a local package or automate the code fix.)