No system links Xamarin.Forms.NetStandard

My Xamarin.Forms Purpose of the project: install .NETStandard 1.4 and import portable problems with system links.

The corresponding portable profile and System NuGet packages for .NETCore have been imported, but Xamarin.Forms (PCL) will not accept them.

Is there any work with this?

{
  "supports": {},
  "dependencies": {
    "Microsoft.NETCore.Portable.Compatibility": "1.0.1",
    "NETStandard.Library": "1.6.0",
    "System.ComponentModel": "4.0.1",
    "System.Diagnostics.Tools": "4.3.0-preview1-24530-04",
    "System.Resources.ResourceManager": "4.3.0-preview1-24530-04",
    "System.Runtime.Serialization.Primitives": "4.1.1",
    "Prism.Core": "6.2.1",
    "Prism.Forms": "6.2.0",
    "Prism.Unity.Forms": "6.2.0",
    "Xamarin.Forms": "2.3.2.127"
  },
  "frameworks": {
    "netstandard1.4": {
      "imports": "portable-net45+win81"
    }
  }
}

Get build errors as follows:

The type "IEditableObject" is defined in the assembly, which is not a reference. You must add a reference to the assembly 'System.ComponentModel, Version = 4.0.0.0, Culture = neutral, PublicKeyToken = b03f5f7f11d50a3a ".

... and this:

"GeneratedCodeAttribute" namespace 'System.CodeDom.Compiler'. 'System.Diagnostics.Tools, Version = 0.0.0.0, Culture = , PublicKeyToken = b03f5f7f11d50a3a ' .

+4
1

Visual Studio 2017, .

+1

Source: https://habr.com/ru/post/1659977/


All Articles