consulo / consulo-unity3d

Frameworks: Unity3D
Apache License 2.0
103 stars 10 forks source link

Lacking "IgnoreDataMemberAttribute" #109

Closed potterdai closed 7 years ago

potterdai commented 7 years ago

Can I change the .net version from 3.5 to 3.5 SP1 ? There are some attributes lacking in current version of .NET like "IgnoreDataMemberAttribute".

https://msdn.microsoft.com/en-us/library/system.runtime.serialization.ignoredatamemberattribute(v=vs.90).aspx

VISTALL commented 7 years ago

Looks like it's only bug with project import. Library System.Runtime.Serialization is not added.

For now you can add manually. File -> Project Structure -> |correct module, like Assembly-CSharp| -> Depedencies -> |+| -> Standard Library -> select System.Runtime.Serialization. I will fix it at midday.

potterdai commented 7 years ago

Yep, that solves the problem! Thank you for the help!

VISTALL commented 7 years ago

Thanks

VISTALL commented 7 years ago

Fixed. Now (re-)import will add this library to dependencies.

Thanks you