Neovim for Beginners — C#
In this article, we will configure Neovim for C# application development.
This article is part of the Neovim for Beginners series.
The Neovim configuration files can be found in this repository.
Getting Started
.NET SDK
Depending on the operating system, we need to install the .NET SDK.
For this article, we use a React-based Single Page Application (SPA). The application is created using the .NET CLI.
To start the React application, run the following commands.
# dotnet build
# dotnet run
If we click on the Fetch data
link on the top right, it calls the WeatherForecast
API and returns the forecast.
We will look at how to debug the API soon.