Why doesn't .NET find the OpenSSL.NET dll?

前端 未结 12 1091
无人及你
无人及你 2020-12-10 05:57

EDIT (the whole question, it was too unclear)

I want to use OpenSSL.NET

The OpenSSL.NET install instructions page: INSTALL

12条回答
  •  感动是毒
    2020-12-10 06:49

    You're probably missing the VC++ redistributables. I'm assuming OpenSSL.NET is x86 only, so you can grab the VS2008 version x86 redistributable if they're release builds.

    Otherwise, if they're debug builds (you'll see Microsoft.VC90.DebugCRT in EventViewer or the sxstrace logs) then you'll need to either:

    • Rebuild them as release
    • Install or copy the debug redistributables from another machine
    • Install Visual C++ into Visual Studio (or, probably, Visual C++ Express)

提交回复
热议问题