Copy release dll after build?
I'm using开发者_Python百科 nuget and after I build my release dll, I would like it to copy that dll to the package\lib folder that exists in the projects folder.
How is that done?
/Lasse
Under project properties, add the following post-build event:
copy "$(TargetPath)" "$(SolutionDir)package\lib"
Be sure to modify the path to your nuget package root. I assumed here that it was <Solution>\package
精彩评论