Tutorial by Examples

A library based on NETStandard 1.6 would look like this: { "version": "1.0.0", "dependencies": { "NETStandard.Library": "1.6.1", //nuget dependency }, "frameworks": { //frameworks the library is build for "netst...
Taken from microsoft's github page with official documentation { "name": String, //The name of the project, used for the assembly name as well as the name of the package. The top level folder name is used if this property is not specified. "version": String, //The Semver versi...
A simple example of project configuration for a .NetCore 1.1 Console App { "version": "1.0.0", "buildOptions": { "emitEntryPoint": true // make sure entry point is emitted. }, "dependencies": { }, "tools": { }, ...

Page 1 of 1