.Net Standard is used to can be use the same library in different type of projects, such as WPF, xamarin, UWP... etc.
.Net Core can't by default, but there is the possibility to configure the multi target in .net Core editing the csproj file, so I can set multiple targets. In one test that I have done, if I set as target net47, I can use this .net Core library in my WPF project.
So if I can do the same with .net Core multi target and with .net standard. What are the differences and when to use one and when to use other?
Thanks.