For UWP application I need to use methods from ComponentModel.TypeDescriptor class. After adding nuget package System.ComponentModel.TypeConverter, this class is available, but there is just only one available function. The reason for this is that project reference assembly from netstandard1.0 directory, than from netstandard1.5 directory where is fully implemented class. Is there any way to change project configuration that libraries from netstandard1.5 will be referenced ? or maybe drop whole reference to Microsoft.NETCore.UniversalWindowsPlatform package and replace it with references to particular dlls ?
I ask how to reference particular dll, or replacing package with references to dlls. than how to target whole other framework.