You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally posted by pAtMaN-bcassa November 17, 2023
I'm working on a .NET MAUI project using Prism.DryIoc.Maui 9.0.2.71-pre with .net 8, and I've encountered a version conflict issue with the IRegionMemberLifetime interface. The conflict arises because this interface appears to be present in both Prism.Maui and Prism assemblies, leading to the following error:
Error CS0433: The type 'IRegionMemberLifetime' exists in both 'Prism.Maui, Version=9.0.271.34483, Culture=neutral, PublicKeyToken=null' and 'Prism, Version=9.0.271.34483, Culture=neutral, PublicKeyToken=40ee6c3a2184dc59'
Example:
public class ExampleViewModel : ViewModelBase, IRegionAware, IRegionMemberLifetime
The text was updated successfully, but these errors were encountered:
Discussed in #3010
Originally posted by pAtMaN-bcassa November 17, 2023
I'm working on a .NET MAUI project using Prism.DryIoc.Maui 9.0.2.71-pre with .net 8, and I've encountered a version conflict issue with the IRegionMemberLifetime interface. The conflict arises because this interface appears to be present in both Prism.Maui and Prism assemblies, leading to the following error:
Error CS0433: The type 'IRegionMemberLifetime' exists in both 'Prism.Maui, Version=9.0.271.34483, Culture=neutral, PublicKeyToken=null' and 'Prism, Version=9.0.271.34483, Culture=neutral, PublicKeyToken=40ee6c3a2184dc59'
Example:
public class ExampleViewModel : ViewModelBase, IRegionAware, IRegionMemberLifetime
The text was updated successfully, but these errors were encountered: