Monthly Archives: December 2017

.net core – create project and adding reference by command line only

dotnet new sln # new solution file mkdir webapi cd webapi dotnet new webapi # new project named webapi dotnet add package Autofac # try to add Autofac dotnet add package Autofac.Extensions.DependencyInjection dotnet add package MongoDB.Driver cd .. mkdir webapi_test … Continue reading

Posted in .net core | Comments Off on .net core – create project and adding reference by command line only