C# Language Versions: How to Override the default
There is a mapping between the project's target framework and the C# language version, which is based on the following rules. Find more details in C# »
There is a mapping between the project's target framework and the C# language version, which is based on the following rules. Find more details in C# »
To manage nuget feeds available to all projects/solutions go to Tools -> Options -> Nuget Package Manager -> Package Sources or Tools -> Nuget Package »
To leverage self-signed certificates in Docker you need to pass them somehow. There are multiple ways to do this: via COPY command during image build (considered »
.NET CLI has a command dev-certs to deal with self-signed development certificates. If the project is launched via Visual Studio F5 the certificate is going to »
Back in the days, we had to use XOR (^) or other cumbersome approaches, overriding GetHashCode function. Something like this: public class Client : IEquatable<Client> »
The Problem: It turned out that calling dotnet pack command produces nothing for .NET Core web projects. After a quick googling I found the following Github »
I came to conclusion that dealing with certificates might be a challenge, especially when You are forced to do that occasionally and just want to get »
Are you still spending days to provision/install your dev environment from scratch when you need to? You gotta stop it. It is insane. There is »
Just faced an unexpected problem in my ASP.NET Core project. Here is the deal, I've added CLI tool for Angular2 support exactly to the web »
Problem I've just tried to publish a console application written in .NET Core and failed at first. Definitely some things have changed (last time i published »