WIndows服务无法找到文件

时间:2015-09-09 13:26:19

标签: c# windows-services

windows service可以在我的机器上正常工作。当我在另一台计算机上安装它时throws例外System.IO.FileNotFoundException。该服务作为本地系统运行。 问题是不会进入线程方法体内。我没有理由抛出这样的例外。

发生这种情况的路线是。

    Thread action = new Thread( () => {
     try 
      {
         using (SpreadsheetDocument spreadsheetDocument = SpreadsheetDocument.Open(..., false))
         {
         ...
         }
         })
      }
     catch(Exception ex)
     {...}

这个例外有什么问题?

1 个答案:

答案 0 :(得分:1)

问题是磁盘上缺少程序集testIntegration