0

我在 CentOS 7.1 上运行 Dotnet CLI 版本 1.0.0-rc2-002439

我已经构建了一个原型控制台应用程序,它只对 PostgreSQL 9.4 数据库执行选择。

我只针对 DNXCORE50,在 Windows 上,一切正常。当我在 CentOS 上运行它时,出现以下异常conn.Open()

Unhandled Exception: System.MissingMethodException: Method not found: 'Void  System.Net.Security.SslStream.AuthenticateAsClient(System.String,  System.Security.Cryptography.X509Certificates.X509CertificateCollection,  System.Security.Authentication.SslProtocols, Boolean)'.
at Npgsql.NpgsqlConnector.RawOpen(NpgsqlTimeout timeout)
at Npgsql.NpgsqlConnector.Open(NpgsqlTimeout timeout)
at Npgsql.NpgsqlConnector.Open()
at Npgsql.NpgsqlConnectorPool.GetPooledConnector(NpgsqlConnection Connection)
at Npgsql.NpgsqlConnectorPool.RequestConnector(NpgsqlConnection connection)
at Npgsql.NpgsqlConnection.OpenInternal(NpgsqlTimeout timeout)
at Npgsql.NpgsqlConnection.Open()
at SensorBot.Core.Services.ConfigService.GetConfig()
at ConsoleApplication.Program.Main(String[] args)

这是我正在使用的 project.json:

{
  "version": "1.0.0-*",
  "compilationOptions": {
    "emitEntryPoint": false
  },
  "dependencies": {
    "Microsoft.NETCore.App": {
      "version": "1.0.0-rc2-23811"
    },
  },
  "runtimes": { "centos.7-x64": { } },
  "frameworks": {
    "dnxcore50": {
      "dependencies": {
        "Microsoft.CSharp": "4.0.1-beta-23516",
        "System.Collections": "4.0.11-beta-23516",
        "System.Console": "4.0.0-beta-23516",
        "System.Linq": "4.0.1-beta-23516",
        "System.Threading": "4.0.11-beta-23516",
        "System.IO": "4.1.0-*",
        "System.IO.FileSystem": "4.0.1-rc2-23811",
        "System.Runtime.Serialization.Primitives": "4.1.1-*",
        "System.Dynamic.Runtime": "4.0.11-*",
        "System.Net.Security": "4.0.0-beta-23405",
        "System.Net.NetworkInformation": "4.1.0-beta-23405",
        "System.Text.RegularExpressions": "4.0.12-rc2-23811",
        "Npgsql": "3.1.0-alpha6"
      }
    }
  }
}

我在 npgsql 的 Github 上看到,使用https://www.myget.org/gallery/npgsql-unstable作为包源并使用 Npgsql 的不稳定版本可以修复它,但是当我使用"Npgsql": "3.1.0-unstable0458"该应用程序时无法编译并说这个版本的 npgsql 与 DNXCore 5.0 不兼容。

一定是我做错了什么,因为其他人似乎不再对此有任何问题。

有任何想法吗 ?

4

1 回答 1

0

我对 npgsql 版本3.1.0-alpha6有同样的例外

未处理的异常:System.MissingMethodException:找不到方法:'Void System.Net.Security.SslStream.AuthenticateAsClient(System.String, System.Security.Cryptography.X509Certificates.X509CertificateCollection, System.Security.Authentication.SslProtocols, Boolean)'。

但是,我能够成功使用两个版本:3.1.0-unstable04583.1.0-unstable0478
目前我正在使用Centos 7.2,Dotnet CLI 版本1.0.0-rc2-002510。作为一个测试应用程序,我创建了一个简单的控制台应用程序,其中包含一个对 postgresql 的选择。
project.json看起来像这样:

{
  "version": "1.0.0-*",
  "compilationOptions": {
    "emitEntryPoint": true
  },
  "dependencies": {
    "Microsoft.NETCore.App": {
      "type": "platform",
      "version": "1.0.0-rc2-23811"
    },
    "Npgsql": "3.1.0-unstable0478"
  },
 "frameworks": {
    "netcoreapp1.0": {
      "imports": "dnxcore50",
    }
  }
}

因为我使用 SSL 连接到 db 我不得不在我的连接字符串中添加几个选项:SSL Mode=Require;Trust Server Certificate=True;Use SSL Stream=True

也许您应该尝试使用较新版本的 dotnet cli。如果您对我的 os/dotnet 环境有任何疑问,请告诉我。

于 2016-04-27T01:26:59.563 回答