Native UI C#

Hey guys! So I was trying to use Native UI C# in visual studio. However even when using the menu example, I am getting a bunch of errors. I am using the Native UI and FX Core reference. Any help would be great, thank you all!

Have you removed the Properties folder containing the AssemblyInfo.cs file?

Nope, I have not done that. I did it, however I am still getting the same errors.

Here is a screenshot of some of them

you got the right CitizenFX.Core.dll referenced?

you could add System.Drawing.Color() rather than just Color() same for the PointF

Yes, I have these.

https://gyazo.com/83a4218efafac324bb367d851fc775cb

You only need to reference CitizenFX.Core.dll you can drop the CitizenFX.Core.Client.dll but that wont solve you issue, as it a namespace conflict, and it doesn’t know what one to use for Color or PointF so you need to change those lines with either System.Drawing.Color or CitizenFX.Core.Color and System.Drawing.PointF or CitizenFX.Core.PointF