On an ASP.NET Core 3.1 application CSProj file I have the following:
<PropertyGroup Condition="'$(Configuration)' == 'development'">
<ConfigurationGroup>Debug</ConfigurationGroup>
</PropertyGroup>
So I set a 'development' build configuration which is basically the debug configuration.
When I simply use dotnet build the project is built with Debug configuration.
To use the development configuration I need to use dotnet build -c development.
Is it possible to set development configuration as default so it is used by:
dotnet build