Description
Hi, one thing I would be glad to see improve in this package is the way the files are copied to the bin folder. Inside the PostBuildEvent added by the package to the .csproj the xcopy command contains an absolute path rooted at the drive letter, e.g.
xcopy /s /y /d "C:\Devel\packages\lib\net40\NativeBinaries\x86_._" "$(TargetDir)NativeBinaries\x86"
This makes the sources not portable to directory structure of other
developers.
Perhaps you can consider simply adding the files to the project as
with CopyToOutputDirectory=PreserveNewest (under the NativeBinaries folder, which will get preserved when copying), or using some smarts to make the path in the xcopy command relative to $(MSBuildProjectDirectory), just like the dlls reference's HintPath is.
Thanks in advance.
And thanks for maintaining this package!
Regards Slawomir