NxpRdLibNet may cause problems while opening.
This is because the current path given for "NxpRdLib" in NxpRdLibNet solution file is not as per the generated package format.
So, to make NxpRdLibNet soultion to work properly, follow the steps below:

Changes for VS2015
===================================================================
1. Open NxpRdLibNet.vs2015.sln file in any editor (Notepad++).
2. Replace the NxpRdLib project with one of the below ones.
	Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NxpRdLib", "..\..\..\NxpRdLib\ex\NxpRdLib.vs2015.vcxproj", "{C5D1AEB4-BC25-4BC8-9E99-B606BD950A07}"
	should be updated to 

	1. Internal release :
	Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NxpRdLib", "..\..\..\NxpRdLib\Internal\ex\VsProjFiles_Internal\vs2015\NxpRdLib.vs2015.vcxproj", "{C5D1AEB4-BC25-4BC8-9E99-B606BD950A07}"
	
	2. ExportControlled release :
	Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NxpRdLib", "..\..\..\NxpRdLib\ExportControlled\ex\VsProjFiles_ExportControlled\vs2015\NxpRdLib.vs2015.vcxproj", "{C5D1AEB4-BC25-4BC8-9E99-B606BD950A07}"
	
	3. Public release :
	Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NxpRdLib", "..\..\..\NxpRdLib\Public\ex\VsProjFiles_Public\vs2015\NxpRdLib.vs2015.vcxproj", "{C5D1AEB4-BC25-4BC8-9E99-B606BD950A07}"
		
		
Changes for VS2017
===================================================================
1. Open NxpRdLibNet.vs2017.sln file in any editor (Notepad++).
2. Replace the NxpRdLib project with one of the below ones.
	Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NxpRdLib", "..\..\..\NxpRdLib\ex\NxpRdLib.vs2017.vcxproj", "{C5D1AEB4-BC25-4BC8-9E99-B606BD950A07}"
	should be updated to 

	1. Internal release :
	Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NxpRdLib", "..\..\..\NxpRdLib\Internal\ex\VsProjFiles_Internal\vs2017\NxpRdLib.vs2017.vcxproj", "{C5D1AEB4-BC25-4BC8-9E99-B606BD950A07}"
	
	2. ExportControlled release :
	Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NxpRdLib", "..\..\..\NxpRdLib\ExportControlled\ex\VsProjFiles_ExportControlled\vs2017\NxpRdLib.vs2017.vcxproj", "{C5D1AEB4-BC25-4BC8-9E99-B606BD950A07}"
	
	3. Public release :
	Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NxpRdLib", "..\..\..\NxpRdLib\Public\ex\VsProjFiles_Public\vs2017\NxpRdLib.vs2017.vcxproj", "{C5D1AEB4-BC25-4BC8-9E99-B606BD950A07}"
	
	
Build Configurations
===================================================================
If the NxpRdLib projects other than the Internal ones are used (Point 2 & 3 under 2), use Debug_External or Release_External build configurations. If Interal one is 
used than use normal Debug and RElease build configurations.