Class Library (Portable) UWP + WPF

1

I created a simple Portable Class Library project that is being used in two WPF e UWP projects.

Both projects work normally, however, the UWP project while compiling displays the following error message:

AlthoughtheprojectworksnormallyIwasintriguedbythismessage,wouldanyoneknowthereason?


project.json

{"supports": {
    "net46.app": {},
    "uwp.10.0.app": {}
  },
  "dependencies": {
    "Microsoft.NETCore.Portable.Compatibility": "1.0.1",
    "NETStandard.Library": "1.6.0"
  },
  "frameworks": {
    ".NETStandard1.3": {}
  }
}
    
asked by anonymous 12.09.2016 / 03:15

1 answer

1

The problem was Microsoft.NETCore.UniversalWindowsPlatform outdated in project WUP , it was just looking for update via Nuget and the problem was solved.

Nothing like using% s of% visits from time to time to solve some problems.

Look at the before and after:

    
13.09.2016 / 02:54