As far as I can tell linker doesn't mark the assemblies which it linked (as in changed) in any way. Some tools might want to detect linked applications to avoid problems with missing APIs. One such example is the startup hook feature.
One such mechanism could be to inject an assembly level attribute, something like:
[assembly: AssemblyMetadata("ILLinkProcessed", "True")]
Size impact of such change should be trivial.