当我在 GAC 中安装程序集时出现错误代码 1
错误是什么?
The command ""C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\gacutil.exe" /i D:\WDS\bin\Debug\WDS.dll /f" exited with code 1.
我正在使用 VS 2010,并在构建后事件中运行它。
"$(FrameworkSDKDir)bin\gacutil.exe" /i $(TargetPath) /f
我在一些论坛中发现我必须像这样引用 TargetPath
"$(FrameworkSDKDir)bin\gacutil.exe" /i "$(TargetPath)" /f
但错误仍然存在。
有人可以帮助我吗?
What is the error ?
The command ""C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\gacutil.exe" /i D:\WDS\bin\Debug\WDS.dll /f" exited with code 1.
I am using VS 2010 and I run this on my post build event.
"$(FrameworkSDKDir)bin\gacutil.exe" /i $(TargetPath) /f
I found in some forum that I have to quote the TargetPath like that
"$(FrameworkSDKDir)bin\gacutil.exe" /i "$(TargetPath)" /f
But the error is still there.
Can anybody help me ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我遇到了类似的错误。根据 Hans Passant 对问题的评论,我发现了访问被拒绝的错误。以管理员身份运行 Visual Studio 解决了该问题。
I was getting a similar error. Following Hans Passant's comment to the question, I discovered an access denied error. Running Visual Studio as Administrator fixed the problem.