Tutorial by Examples

.NET Core project.json supports NuGet importing (a.k.a. lying according to this SO answer). It is impossible to include a mscorlib based library due to an import statement. { "version": "1.0.0-*", "dependencies": { "Microsoft.AspNet.Identity.E...
In the example project.json below, an assembly Microsoft.AspNet.Identity.EntityFramework was added which is mscorlib based. { "version": "1.0.0-*", "dependencies": { "Microsoft.AspNet.Identity.EntityFramework": "2.2.1", ...
Targeting multiple frameworks with project.json is simple. However the result are two different compilations. Take the following example: { "version": "1.0.0-*", "dependencies": { "NETStandard.Library": "1.6.0", "...
Another popular error is the referring of packages which does not satisfy all framework on the global scope when multiple frameworks are targeted. { "version": "1.0.0-*", "dependencies": { "NETStandard.Library": "1.6.0", ...

Page 1 of 1