.NET Issues when compiling very big UWP applications Introduction When compiling very big UWP applications, you can get the following error: C:\Program Files (x86)\Microsoft SDKs\UWPNuGetPackages\microsoft.net.native.compiler\2.2.8-rel-28605-00\tools\Microsoft.NetNative.
Visual Studio Visual Studio: add After-Publish script For a project, I needed to execute a script to patch a file after it has been published to a local folder. After-Publish script aren't editable in the Visual Studio
.NET Using Stored Procedure for CRUD Operations in SQL Server Having to deal with many customers and projects, sometimes it still happens to me to have to deal with projects that implement CRUD operations with Stored Procedures in SQL Server.
.NET How to use a controller from another assembly in Asp.Net Core Let's suppose you have a Asp.Net Core application and you want to split the controllers in different class libraries (for example, to place the API controllers in a separate
.NET Visual Studio error: "The project file cannot be opened by the project system, because it is missing some critical imports or the referenced SDK cannot be found." It happened to me, recently, to work on multiple .NET Core solutions from various customers, but I was not able to open them. Or better: Visual Studio was able to
.NET .NET Core Transitive Dependencies and how to block them In .NET Core, differently from .NET Framework, both Package and Project Dependencies are Transitive by default. Let's suppose for example to have the following project structure: Project DAL: it references
.NET Develop graphical Linux apps on Windows with the WSL, Visual Studio and Mono In this guide, I will present you the Windows Subsystem for Linux (WSL) and how to develop graphical Linux applications on Windows with Visual Studio, thanks to Mono used as
.NET How to configure Code Analysis in .NET Core Code Analysis (formerly FxCop) is a very powerful tool to help improving the code quality in .NET projects. Let's make a bit of history: the previous version of this tool
.NET The IDisposable Pattern explained Doing multiple code reviews, I see that a recurring problem is the missing or wrong implementation of the IDisposable pattern. I try to explain it in this article. Let's try