做了一个winform项目,用到cefsharp,想把cefsharp的一大堆文件放在应用程序的子目录。解决方案:项目中dll设置为不负责+probing配置
参考:
https://github.com/cefsharp/CefSharp/issues/601
https://docs.microsoft.com/en-us/dotnet/framework/configure-apps/specify-assembly-location?redirectedfrom=MSDN

//关掉调试日志
settings.LogSeverity = LogSeverity.Disable;
如果不设置,会在程序目录下生成debug.log,会记录敏感信息

相关文章:

  • 2021-07-08
  • 2021-06-14
  • 2021-12-15
  • 2022-01-26
  • 2021-04-05
猜你喜欢
  • 2021-10-14
  • 2022-02-04
  • 2021-08-11
  • 2021-12-18
  • 2022-12-23
  • 2021-12-05
相关资源
相似解决方案