|
|
Webmaster posted on December 17, 2025 11:56
Using the Azure Portal
- Sign in to the Azure portal.
- Navigate to your App Service and select it.
- In the left navigation menu, under Settings, select Configuration.
- Select the General settings tab.
- In the Stack settings section, you will see the Runtime stack and the specific .NET version being used.
Using the Kudu Console (Advanced Tools)
The Kudu console provides direct access to the underlying environment and installed runtimes.
-
- In the Azure portal, navigate to your App Service.
- Under Development Tools, select Advanced Tools, then select Go.
- In the Kudu services window, select Debug console and choose either CMD or PowerShell.
- Run the appropriate command in the console:
- For .NET Core and .NET 5+, run
dotnet --list-runtimes or dotnet --info to see all installed versions.
There are currently no comments, be the first to post one!