This simplifies the props files that handles copying the binaries to the lib folder for .NET Framework and mono projects by using wildcards to find all of the binaries in the package.
No more needing to update the powershell script whenever a new binary is added, leading to errors like #94.
This also cleans up a few other miscellaneous things:
Stop setting MSBuildAllProjects. Since these files are consumed from the NuGet package, it's not likely that they'll be changing once they are on disk.
Use $(MSBuildThisFileDirectory) in the buildMultiTargeting folder to be more explicit in the path to the build file.
Remove the net46 buildMultiTargeting props file since that would never be used.
This simplifies the props files that handles copying the binaries to the lib folder for .NET Framework and mono projects by using wildcards to find all of the binaries in the package.
No more needing to update the powershell script whenever a new binary is added, leading to errors like #94.
This also cleans up a few other miscellaneous things:
MSBuildAllProjects
. Since these files are consumed from the NuGet package, it's not likely that they'll be changing once they are on disk.$(MSBuildThisFileDirectory)
in thebuildMultiTargeting
folder to be more explicit in the path to thebuild
file.net46
buildMultiTargeting props file since that would never be used.