I have a solution with some projects:
- client app - UWP project
- device sdk - UWP project (because of bluetooth APIs)
- client app - ASP.Net Core 1.1 targeting .Net Core 2.0
- client app plugins
- some projects with shared model and interface classes.
I would like to use .net standard projects as much as possible (for the shared projects and preferably for the plugins) because they are more lightweight and can be edited without unloading them in Visual Studio for example.
Referencing .net standard 1.4 libraries FROM an UWP project goes fine, but referencing an UWP project FROM a .net standard 1.4 project results in an error:
Project DeviceSDK is not compatible with netstandard1.4 (.NETStandard,Version=v1.4). Project DeviceSDK supports: uap10.0.15063 (UAP,Version=v10.0.15063) Is this is there any workaround for this?