簡體   English   中英

Google.Protobuf.dll 就在我的 .dll 旁邊,但沒有找到或加載它

[英]Google.Protobuf.dll is right next to my .dll but it is not being found or loaded

我有一個 Framework 4.8 C# 應用程序,它使用ClearScript來允許將 JavaScript 用作擴展語言。 我能夠將插件編寫為 DLL 並在運行時附加它們,即

JSE.Script.attach = (Func<string, bool>)Attach;
...
        private static bool Attach(string dllPath, string name = "")
        {
            var status = false;
            var htc = new HostTypeCollection();
            try
            {
                var assem = Assembly.Load(AssemblyName.GetAssemblyName(dllPath));
                htc.AddAssembly(assem);
                if (name.Length == 0)
                {
                    name = assem.FullName.Split(',')[0];
                }

                JSE.AddHostObject(name, htc); //FIXME checkout the hosttypes
                Console.Error.WriteLine($"Attached {dllPath} as {name}");
                status = true;
            }
            catch (ReflectionTypeLoadException rtle)
            {
                foreach (var item in rtle.LoaderExceptions)
                {
                    Console.Error.WriteLine(item.Message);
                    T.Fail(item.Message);
                }

            }
            catch (FileNotFoundException fnfe)
            {
                Console.Error.WriteLine(fnfe.Message);
                T.Fail(fnfe.Message);

            }
            catch (Exception e)
            {
                Console.Error.WriteLine(e.Message);
                T.Fail(e.Message);

            }
            return status;
        }

這允許我的腳本有像

attach(".\\Plugin_GoogleAds_Metrics.dll");
H = Plugin_GoogleAds_Metrics.GoogleAds_Metrics.Historical;
H.EnableTrace("GAM");
...

我已經為那些感興趣的人制作了該插件的公開回購

在這種情況下不起作用的是,當我嘗試執行插件的GetAccountInformation方法時,執行到達GoogleAdsServiceClient googleAdsService = client.GetService(Services.V11.GoogleAdsService); 行,拋出一個錯誤,抱怨 Google.Protobuf,即

Exception has been thrown by the target of an invocation.
    at JScript global code (Script [23] [temp]:5:0) -> acc = H.GetAccountInformation(auths.Item1, 7273576109, true)
   at Microsoft.ClearScript.ScriptEngine.ThrowScriptError(IScriptEngineException scriptError)
   at Microsoft.ClearScript.Windows.WindowsScriptEngine.ThrowScriptError(Exception exception)
   at Microsoft.ClearScript.Windows.WindowsScriptEngine.<>c__DisplayClass57_0`1.<ScriptInvoke>b__0()
   at Microsoft.ClearScript.ScriptEngine.ScriptInvokeInternal[T](Func`1 func)
   at Microsoft.ClearScript.ScriptEngine.ScriptInvoke[T](Func`1 func)
   at Microsoft.ClearScript.Windows.WindowsScriptEngine.ScriptInvoke[T](Func`1 func)
   at Microsoft.ClearScript.Windows.WindowsScriptEngine.Execute(UniqueDocumentInfo documentInfo, String code, Boolean evaluate)
   at Microsoft.ClearScript.Windows.JScriptEngine.Execute(UniqueDocumentInfo documentInfo, String code, Boolean evaluate)
   at Microsoft.ClearScript.ScriptEngine.Evaluate(UniqueDocumentInfo documentInfo, String code, Boolean marshalResult)
   at Microsoft.ClearScript.ScriptEngine.Evaluate(DocumentInfo documentInfo, String code)
   at Microsoft.ClearScript.ScriptEngine.Evaluate(String documentName, Boolean discard, String code)
   at Microsoft.ClearScript.ScriptEngine.Evaluate(String documentName, String code)
   at Microsoft.ClearScript.ScriptEngine.Evaluate(String code)
   at RulesetRunner.Program.Run(JScriptEngine& jSE, String scriptText, Config cfg, Dictionary`2 settings) in C:\Users\bugma\Source\Repos\Present\BORR\RulesetRunner\RunManagementPartials.cs:line 72
Exception has been thrown by the target of an invocation.
Exception has been thrown by the target of an invocation.
Could not load file or assembly 'Google.Protobuf, Version=3.15.8.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604' or one of its dependencies. The system cannot find the file specified.

所以

  1. 我正在使用最新的 Google.Ads.GoogleAds 庫
  2. 在 csproj 文件中 AutoGenerateBindingRedirects 已設置為 true
  3. Add-BindingRedirect 已在插件項目的上下文中執行
  4. Plugin_GoogleAds_Metrics.dll 與 Google.Protobuf.dll 位於同一文件夾中

從這里到哪里?

解決此問題的方法是在調用應用程序中包含 Google.Ads.GoogleAds。 我不必在主二進制文件中明確提及符號,只需在構建中包含庫即可。 我期望這樣做是在主 EXE 旁邊包含所有相關的 DLL。

這絕對不是我想要的。 我希望能夠將所有 DLL 放到一個單獨的插件文件夾中,並且只有在我附加插件時才連接它們。 可悲的是,目前這似乎無法實現。 現在我想知道我編寫的使用 Google 技術的其他插件。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM