0

基本上它在标题中。VS2003 网站中有一个 bug 需要修复,但它不允许我们重建整个项目,需要立即修复该 bug。是否可以只重建包含错误的 dll,将其传输到托管网站的服务器并使其正常工作?

4

2 回答 2

1

是的,只要它是一个孤立的更改(即不更改任何公共方法的签名),您应该能够构建和部署单个 dll。

于 2010-02-08T17:06:31.767 回答
1

If you are not using strong names, you should be able to recompile just the one assembly, yes.

However, if you are signing your assemblies, no, you will have to rebuild all of the DLLs.

If you just need to rebuild everything, use the "Rebuild" command, or manually delete all "bin" and "obj" folders in your solution.

于 2010-02-08T16:52:25.167 回答