Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 nuget,在构建我的发布 dll 之后,我希望它将该 dll 复制到项目文件夹中存在的 package\lib 文件夹中。
这是怎么做的?
/拉斯
在项目属性下,添加以下构建后事件:
copy "$(TargetPath)" "$(SolutionDir)package\lib"
请务必修改 nuget 包根目录的路径。我在这里假设它是 <Solution>\package