Reputation: 2337
According to the documentation, targeting the .NET Standard Platform 1.3 allow my library to be used within a 4.6 .NET program.
Am I right about that ?
If I am, my problem is, I can't find a way to downgrade my .net core Library (except for the 1.5.0-rc2)
(Excuse me for my English, I am not a native speaker)
Upvotes: 1
Views: 1752
Reputation: 4302
In your project.json you could defined more than one target framework. Each target can have custom dependency package and/or common dependencies.
{
...
"frameworks": {
"netstandard1.6": { },
"NET46: { },
"NET40: { },
"NET35: { },
}
Upvotes: 1