I'm not an expert reading MSBuild files, but there seems to be no difference, because it looks like what exactly MSBuild ..
You can pull out "% windir% \ Microsoft.NET \ Framework64 \ v4.0.30319 \ Microsoft.Common.targets", find the publishing target and track the dependencies, so that you can ultimately find the _CopyFilesToPublishFolder target that does exactly what it says: copy everything covered by the OutputFiles property (among many other files) to the publication directory.
neilh source
share