-
Recent Posts
Recent Comments
Archives
- May 2024
- October 2023
- September 2022
- November 2021
- May 2021
- April 2021
- January 2021
- February 2020
- May 2019
- August 2018
- July 2018
- April 2018
- December 2017
- November 2017
- October 2017
- June 2017
- May 2017
- April 2017
- February 2017
- December 2016
- September 2016
- July 2016
- May 2016
- April 2016
- March 2016
- February 2016
- January 2016
- December 2015
- November 2015
Categories
Meta
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