Installation of Blazor on Mac OS X

Blazor is a feature of .Net that allows for client-side web applications to be built via CSS, HTML, and C#. Apps written in Blazor can be written on almost any platform, including the Mac. This blog post walks through the installation process as documented on the MS Blazor Tutorial website.

Blazor’s tech stack is part of Microsoft’s .Net developer platform. Because of that, the first thing we need to do is install the .Net Software Developer Kit (SDK).

Steps

  1. Download DotNet SDK for Mac.

    https://download.visualstudio.microsoft.com/download/pr/b4db3ee6-91da-4dd3-a279-37c45d9627b7/fad88a7335d374d6e4d53aef085f4b24/dotnet-sdk-3.1.403-osx-x64.pkg

  2. Double-click the install

  3. Verify the install works

Installation Screenshots

Install_DotNet_SDK_Screenshot_01.png
Install_DotNet_SDK_Screenshot_02.png
Install_DotNet_SDK_Screenshot_03.png
Install_DotNet_SDK_Screenshot_04.png
Install_DotNet_SDK_Screenshot_05.png


To validate the install, a new terminal window (or tab) must be opened to run the following command. This also extends to the VSCode terminal.

dotnet --info
Install_DotNet_SDK_Screenshot_06.png