Last active
August 11, 2016 05:24
-
-
Save jeremybeavon/a908ce6a62704c752aa0 to your computer and use it in GitHub Desktop.
MSBuild Undocumented Metadata
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- 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