Instead of having to use the less intuitive AdditionalProperties like so:
<ProjectReference Include="..\ClassLibraryNET472\ClassLibraryNET472.csproj"
AdditionalProperties="PackFolder=lib\net5.0\SpecificFolder" />
Make it possible to just place PackFolder on the ProjectReference itself too:
<ProjectReference Include="..\ClassLibraryNET472\ClassLibraryNET472.csproj"
PackFolder="lib\net5.0\SpecificFolder" />
Originally asked on #118 by @denjmpr.
Instead of having to use the less intuitive
AdditionalPropertieslike so:Make it possible to just place
PackFolderon theProjectReferenceitself too:Originally asked on #118 by @denjmpr.