Category Archives: .net core

.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

.net core – source code analysis starting

.NET Core is a cross-platform free and open-source managed software framework similar to .NET Framework. It consists of CoreCLR, a complete cross-platform runtime implementation of CLR, the virtual machine that manages the execution of .NET programs. the Major code is … Continue reading

Posted in .net core | Comments Off on .net core – source code analysis starting