GAC on edit process?

╄→гoц情女王★ 提交于 2019-12-04 11:43:43

If you keep updating that project, In that case you can add build event to GAC automatically on that particular project using following post built event.Under Build Event in project properties just you can add the following post build event to GAC your modified dll.Just copy and past following line with zero modification

  "%ProgramFiles(x86)%\Microsoft SDKs\Windows\v7.0A\bin\NETFX 4.0 Tools\x64\gacutil.exe" /i "$(TargetPath)"

But make sure that gacutil.exe in that path.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!