Has anyone ever used NLog 2 with SL5?
I cannot find DLLs for SL5 on the NLog homepage. When I try to reference the SL4 DLLs, VS 2010 says the following:

Why? I thought it is possible to reference SL4 DLLs in a SL5 project (but not the other way round)?
So I checked out NLog sources, opened its SL4 project, changed the target version from SL4 to SL5, Clean, Build and referenced the newly created DLL. While this seems to work it just doesn't feel right.
Any better ideas?
Update: Adding a reference to the original NLog 2 DLLs built for SL4 by directly editing the .csproj file of my SL5 project seems to do the job as well. I'm confused...
<Reference Include="NLog">
<HintPath>..\Libraries\NLog\NLog.dll</HintPath>
</Reference>