编程语言
首页 > 编程语言> > c#-无法在桌面应用程序中安装或运行该应用程序

c#-无法在桌面应用程序中安装或运行该应用程序

作者:互联网

我已经在.Net中开发了一个桌面应用程序.我已经将其发布并部署到我的客户系统中.但是,当我的客户端运行该安装程序时,将显示错误消息:

Unable to install or run the application. The application requires that assembly Microsoft.SqlServer.Diagnastics.STrace Version 10.0.0.0 be installed in the Global Assembly Cache (GAC) first

我该怎么办?

解决方法:

此dll可能不在全局程序集缓存中.

您可以通过以下命令将装配体添加到GAC:

GACUTIL –i <Path to Microsoft.SqlServer.Diagnostics.STrace.dll>

标签:desktop-application,c
来源: https://codeday.me/bug/20191202/2085545.html