开发者

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

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜