Release build but debugging enabled

I’m using Visual Studio for Mac and came across this same “Archive built with debugging enabled” warning after creating an archive of the Android project. To fix this, do the following: Go into the Android project options (double-click on the Android project). Select the Compiler options. In the “Debug information” drop-down menu, select None (mine … Read more

How to enable migrations in Visual Studio for Mac

This is currently supported on Mac. First you need to install dotnet-ef dotnet tool install –global dotnet-ef To install a specific version of the tool, use the following command: dotnet tool install –global dotnet-ef –version 3.1.4 Add the “dotnet-ef” tools directory on the PATH environment variable. export PATH=”$PATH:/Users/’your user folder’/.dotnet/tools” Open a command line, go … Read more