Skip to content

Instantly share code, notes, and snippets.

@jeremybeavon
Last active August 11, 2016 05:24
Show Gist options
  • Select an option

  • Save jeremybeavon/a908ce6a62704c752aa0 to your computer and use it in GitHub Desktop.

Select an option

Save jeremybeavon/a908ce6a62704c752aa0 to your computer and use it in GitHub Desktop.
MSBuild Undocumented Metadata
<!-- Belongs under ProjectReference. Means the assembly is not referenced in the output assembly. -->
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
<!-- Hard links:
http://atombrenner.blogspot.com.au/2011/11/speed-up-your-build-with.html
https://gist.github.com/jstangroome/734259
-->
<CreateHardLinksForAdditionalFilesIfPossible>true</CreateHardLinksForAdditionalFilesIfPossible>
<CreateHardLinksForCopyAdditionalFilesIfPossible>true</CreateHardLinksForCopyAdditionalFilesIfPossible>
<CreateHardLinksForCopyFilesToOutputDirectoryIfPossible>true</CreateHardLinksForCopyFilesToOutputDirectoryIfPossible>
<CreateHardLinksForCopyLocalIfPossible>true</CreateHardLinksForCopyLocalIfPossible>
<CreateHardLinksForPublishFilesIfPossible>true</CreateHardLinksForPublishFilesIfPossible>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment