This is a very basic Blazor Hello World website written in Visual Studio Code. Yes 'Code', not VS. I followed the tutorial from Visual Studio Code for C# Developers | .NET Conf 2022.
Blazor is a framework for building interactive client-side web UI with .NET
More information about Blazor: ASP.NET Core Blazor (learn.microsoft.com)
Instructions:
- Download and install Visual Studio Code from https://code.visualstudio.com/Download
- Download and install the .Net SDK from https://dotnet.microsoft.com/en-us/download
- Follow Tim's instructions from the Video
The commands I used:
dotnet new sln --name "Blazor"
dotnet new gitignore
dotnet new blazorserver --name "Server"
dotnet sln add .\Server\Server.csproj