azure webjob无法找到dll

时间:2015-07-15 22:51:26

标签: c# c++ azure dll azure-webjobs

我有一个简单的c#控制台应用程序,它使用c ++ dll,它在我的电脑上完美运行。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication1
{
    class Program
    {
        [DllImport("ConsoleApplication2.dll", CallingConvention = CallingConvention.Cdecl)]
        public static extern int mainn();

        static void Main(string[] args)
        {
            int num = mainn();
        }
    }
}

我用它的dll和所有调试文件压缩了这个控制台应用程序并将其上传到一个连续的webjob,所以它看起来像这样:http://i.imgur.com/wWfE6lG.png 在azure中运行时会发生以下错误:

[07/15/2015 22:10:49 > 223c43: SYS INFO] Run script 'ConsoleApplication1.exe' with script host - 'WindowsScriptHost'
[07/15/2015 22:10:49 > 223c43: SYS INFO] Status changed to Running
[07/15/2015 22:10:49 > 223c43: ERR ] 
[07/15/2015 22:10:49 > 223c43: ERR ] Unhandled Exception: System.DllNotFoundException: Unable to load DLL 'ConsoleApplication2.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)
[07/15/2015 22:10:49 > 223c43: ERR ]    at ConsoleApplication1.Program.mainn()
[07/15/2015 22:10:49 > 223c43: ERR ]    at ConsoleApplication1.Program.Main(String[] args) in c:\Users\Juan Jose\Desktop\NAT middleman\ConsoleApplication1\Program.cs:line 17
[07/15/2015 22:10:49 > 223c43: SYS ERR ] Job failed due to exit code -532462766
[07/15/2015 22:10:49 > 223c43: SYS INFO] Process went down, waiting for 60 seconds

这意味着它无法找到ConsoleApplication2.dll,但在图片中你可以看到它就在那里,我该如何解决这个问题?

3 个答案:

答案 0 :(得分:1)

首先,我要确保您在项目参考中引用了您的dll。为此,请右键单击解决方案树中的“引用”选项卡,然后单击“添加引用”。然后在浏览下找到你的dll并将其检入你的项目。如果已经检查过那么你已经引用了你的dll。然后我会检查你的dll并确保它不是只读的。

希望这会有所帮助;)

答案 1 :(得分:0)

我首先尝试将环境设置为当前目录:

Environment.CurrentDirectory

如果这不起作用,我会回到app.config中的探测元素。

<configuration>
   <runtime>
      <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
         <probing privatePath="bin;bin2\subbin;bin3"/>
      </assemblyBinding>
   </runtime>
</configuration>

参考:https://msdn.microsoft.com/en-us/library/823z9h8w.aspx

答案 2 :(得分:0)

我通过在visual studio中更改此选项解决了这个问题:项目属性 - &gt; C / C ++ - &gt;代码生成 - &gt;运行时库 - &gt;将此选项更改为多线程(/ MT)。重新构建ConsoleApplication2.dll,然后将其传递给azure并且工作正常。