构建 AspNet.Security.OpenIdConnect.Server 时出错



我正在尝试构建AspNet.Security.OpenIdConnect.Server但遇到以下错误:

.NETStandard,Version=v1.3 error NU1002: The dependency System.Security.Cryptography.OpenSsl 4.0.0-rc3-23911 in project AspNet.Security.OpenIdConnect.Server does not support framework .NETStandard,Version=v1.3.

如果我删除对netstandard1.3的引用projects.json则项目将生成而没有错误。

我在Windows上使用最新的不稳定DNX(1.0.0-rc2-16595)。

谁能帮我弄清楚发生了什么?

提前问候和感谢!

您看到的错误可能是由于某些 CoreFX 加密软件包最近更新为需要 netstandard1.4 而不是 dotnet5.4/netstandard1.3 引起的:

4.0.0-rc3-23911:

<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/01/nuspec.xsd">
  <metadata minClientVersion="3.4">
    <id>System.Security.Cryptography.OpenSsl</id>
    <version>4.0.0-rc3-23911</version>
    <title>System.Security.Cryptography.OpenSsl</title>
    <authors>Microsoft</authors>
    <owners>microsoft,dotnetframework</owners>
    <licenseUrl>http://go.microsoft.com/fwlink/?LinkId=329770</licenseUrl>
    <iconUrl>http://go.microsoft.com/fwlink/?LinkID=288859</iconUrl>
    <requireLicenseAcceptance>true</requireLicenseAcceptance>
    <description>Provides cryptographic algorithm implementations and key management for non-Windows systems with OpenSSL.
Commonly Used Types:
System.Security.Cryptography.RSAOpenSsl
 rn TFS ID: 1583883, GitHub SHA: https://github.com/dotnet/corefx/tree/3cabb976e023a5fb43143f47cfbceca60c0268a5</description>
    <copyright>© Microsoft Corporation.  All rights reserved.</copyright>
    <tags></tags>
    <dependencies>
      <group targetFramework=".NETStandard1.4">
        <dependency id="runtime.native.System.Security.Cryptography" version="[4.0.0-rc3-23911, )" />
        <dependency id="System.Collections" version="[4.0.11-rc3-23911, )" exclude="Compile" />
        <dependency id="System.IO" version="[4.0.11-rc3-23911, )" />
        <dependency id="System.Resources.ResourceManager" version="[4.0.1-rc3-23911, )" exclude="Compile" />
        <dependency id="System.Runtime" version="[4.0.21-rc3-23911, )" />
        <dependency id="System.Runtime.Extensions" version="[4.0.11-rc3-23911, )" exclude="Compile" />
        <dependency id="System.Runtime.Handles" version="[4.0.1-rc3-23911, )" />
        <dependency id="System.Runtime.InteropServices" version="[4.0.21-rc3-23911, )" exclude="Compile" />
        <dependency id="System.Runtime.Numerics" version="[4.0.1-rc3-23911, )" exclude="Compile" />
        <dependency id="System.Security.Cryptography.Algorithms" version="[4.1.0-rc3-23911, )" />
        <dependency id="System.Security.Cryptography.Encoding" version="[4.0.0-rc3-23911, )" exclude="Compile" />
        <dependency id="System.Security.Cryptography.Primitives" version="[4.0.0-rc3-23911, )" />
        <dependency id="System.Text.Encoding" version="[4.0.11-rc3-23911, )" exclude="Compile" />
      </group>
    </dependencies>
  </metadata>
</package>

4.0.0-rc2-23826:

<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/01/nuspec.xsd">
  <metadata minClientVersion="3.4">
    <id>System.Security.Cryptography.OpenSsl</id>
    <version>4.0.0-rc2-23826</version>
    <title>System.Security.Cryptography.OpenSsl</title>
    <authors>Microsoft</authors>
    <owners>microsoft,dotnetframework</owners>
    <licenseUrl>http://go.microsoft.com/fwlink/?LinkId=329770</licenseUrl>
    <iconUrl>http://go.microsoft.com/fwlink/?LinkID=288859</iconUrl>
    <requireLicenseAcceptance>true</requireLicenseAcceptance>
    <description>Provides cryptographic algorithm implementations and key management for non-Windows systems with OpenSSL.
Commonly Used Types:
System.Security.Cryptography.RSAOpenSsl
 rn TFS ID: 1579044, GitHub SHA: https://github.com/dotnet/corefx/tree/dacca1618c0dbb266945d42e58b9584e7c72126c</description>
    <copyright>© Microsoft Corporation.  All rights reserved.</copyright>
    <dependencies>
      <group targetFramework=".NETPlatform5.4">
        <dependency id="runtime.native.System.Security.Cryptography" version="4.0.0-rc2-23826" />
        <dependency id="System.Collections" version="4.0.0" />
        <dependency id="System.IO" version="4.0.10" />
        <dependency id="System.Resources.ResourceManager" version="4.0.0" />
        <dependency id="System.Runtime" version="4.0.20" />
        <dependency id="System.Runtime.Extensions" version="4.0.10" />
        <dependency id="System.Runtime.Handles" version="4.0.0" />
        <dependency id="System.Runtime.InteropServices" version="4.0.20" />
        <dependency id="System.Runtime.Numerics" version="4.0.0" />
        <dependency id="System.Security.Cryptography.Algorithms" version="4.0.0-rc2-23826" />
        <dependency id="System.Security.Cryptography.Encoding" version="4.0.0-rc2-23826" />
        <dependency id="System.Security.Cryptography.Primitives" version="4.0.0-rc2-23826" />
        <dependency id="System.Text.Encoding" version="4.0.10" />
      </group>
      <group targetFramework="MonoAndroid1.0" />
      <group targetFramework="MonoTouch1.0" />
      <group targetFramework=".NETFramework4.6" />
      <group targetFramework=".NETCore5.0" />
      <group targetFramework="Xamarin.iOS1.0" />
      <group targetFramework="Xamarin.Mac2.0" />
    </dependencies>
  </metadata>
</package>

这不会影响我们的构建,因为我们只使用 aspnetcidev 源(尚无 CoreFX RC3 包),但您可能最近使用 dotnet-core 源下载了一个项目,这导致 RC3 包保留在您的全局包存储中 ( .nugetpackages )。

若要暂时解决此问题,可以重新定位 ASOS 以使用netstandard1.4或擦除.nugetpackages文件夹并使用 RC2 包。

最新更新