我windows service
可以在我的机器上正常工作。当我在另一台计算机上安装它时throws
例外System.IO.FileNotFoundException
。该服务作为本地系统运行。
问题是不会进入线程方法体内。我没有理由抛出这样的例外。
发生这种情况的路线是。
Thread action = new Thread( () => {
try
{
using (SpreadsheetDocument spreadsheetDocument = SpreadsheetDocument.Open(..., false))
{
...
}
})
}
catch(Exception ex)
{...}
这个例外有什么问题?
答案 0 :(得分:1)
问题是磁盘上缺少程序集testIntegration
。