无法在c#project

时间:2016-11-08 21:21:40

标签: c# debugging visual-studio-2015 debug-symbols pdb-files

我有一个主应用程序,它从已编译的dll文件中加载驱动程序。我遇到了一个问题,我希望能够调试这些dll文件,但项目没有加载符号。

dll文件是解决方案的一部分,但必须与主应用程序分开构建。然后,主应用程序在运行时从目录加载这些dll。我在其中一个加载的DLL文件中出错(不是例外,只是意外结果)但无法调试文件。谁能让我知道如何进行这些调试?

编辑: 为了更好地了解dll如何加载,这是主项目的代码:

public List<BaseClass> getObjects(string objectName)
{
    List<BaseClass> availableDrivers = new List<BaseClass>();

    string currentDir = Directory.GetCurrentDirectory();
    currentDir = Path.GetDirectoryName(new Uri(Assembly.GetExecutingAssembly().CodeBase).LocalPath); //Use this to find path even when running as service

    if (Directory.Exists(currentDir + "\\Objects"))
    {
        string[] files = Directory.GetFiles(currentDir + "\\Objects", "*.dll");
        foreach (string file in files)
        {
            Console.WriteLine("LOOKING AT:"+ file);
            try
            {
                Assembly dll = Assembly.LoadFrom(file);
                Type[] types = dll.GetTypes();  // .Where(x => x.BaseType.Name == "BaseClass");
                foreach (Type type in types)
                {

                    if (type.BaseType != null && (type.BaseType.Name == "BaseClass" || type.BaseType.Name == "PeriodicBaseClass"))
                    {
                        BaseClass ClassObj = (BaseClass)Activator.CreateInstance(type);

                        if (objectName == "" || objectsName == ClassObj.Name)
                        {
                            availableDrivers.Add(ClassObj);
                        }
                    }
                }
            }
            catch (Exception e)
            {
                Error.Log("Error reading driver:" + e.Message,MessageType.Error);
                //Console.WriteLine("Error reading driver:" + e.Message);
            }
        }
    }
    return availableDrivers;
}

正如您所看到的,当我运行程序本身时,驱动程序通过检索其编译的dll文件而加载,并且在dll代码中放置断点时,我收到消息,指出无法加载符号。我已经尝试检查Debug&gt; Windows&gt;模块,但由于没有直接加载到应用程序中,dll不会显示在那里。

2 个答案:

答案 0 :(得分:0)

如果有问题的dll是调试版本(也就是说,它们是为调试而编译的)并且它们当前的.pdb文件位于同一目录中,那么您应该可以单步执行它们,就像它们在您自己的项目中一样。

另一种方法是打开构建这些dll的解决方案,并通过附加调试它到您正在运行的程序的进程。

https://msdn.microsoft.com/en-us/library/3s68z0b3.aspx

答案 1 :(得分:0)

所以我最终解决了这个问题。我这样做的方法是在解决方案中创建一个小型控制台应用程序,它运行与主应用程序相同的方法,但是直接来自解决方案中的项目,而不是动态加载dll。

然后我将启动项目设置为控制台应用程序,并且能够正确地逐步执行相关文件。