Blog

Technical Articles

This section contains site articles covering .NET, desktop development, engineering practice, and general development topics.

First Visit

New User Starting Route

Random Exploration

Random Discovery

Random Discovery

Hello .NET run file, goodbye csproj

This article introduces the new file-based program feature of the .NET CLI, which allows developers to run C# source files directly without creating a project file. This feature works by generating a virtual project file in memory and supports NuGet dependencies and project property settings, providing convenience for developing scripts and simple applications. The article also looks forward to the future development directions of this feature, including target path extension, unified command-line arguments, performance improvements, and support for more file-based program commands.

.NET
Random Discovery

Using ASP.NET Core Visual Log Component

Today, the site owner recommends a log visualization component `LogDashboard`. It does not require installing third-party processes. Just install the corresponding **NuGet** package in your project and add a few lines of code to have a web-based log management panel. It's really nice.

ASP.NET Core