문제

I have a dll being used by a asp.net website. I made some change to the dll and would like to replace the current dll in the bin directory.

Can I just simply drop the new dll in or is there a better way? I don't want to reset the iis for this.

도움이 되었습니까?

해결책

Yes you can make that as long as your modifications won't break the project (Change return type, removed function, etc..) I wouldn't highly suggest that, but sometimes we need to place a hot fix on the fly until we full deploy

다른 팁

Be careful with that. I prefer to have all projects pointing to the DLL project in the same solution.

I would point it to the release folder so that they share the same DLL.

When you rebuild your solution, if something is wrong you will know because it will fail to build.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top