I'm porting my project from .net framework 4.5.2 to .net standard. I have read this article for guiding. As i see in that article, .net framework 4.5.2 should implement .net standard 1.2 or 1.3 (as in the table there are .net framework 4.5.1 and 4.6 but not 4.5.2 so i'm not sure).
So, it should be suitable for targeting my project to .net standard 1.3. I think, I can re-target without any error if my project just use .net framework libraries. However, when i run the .NET Portability Analyzer tool. It shows that System.Xml.XPath.XPathNodeIterator is just supported in .net framework 4.5.2 and not in .net standard 1.3. I have to target .net standard 2.0 to make it work.
It really make me confuse. Do i mis-understand something here?