I've built a brand new windows 11 image (I use parallels) and installed all the prerequisites from this article in an attempt to get a development environment where I can run local Logic App (standard).
After installing all prerequisites, the article describes the steps to create a sample application. On the step to create the stateless workflow, an error is shown in visual studio code in the bottom right corner of the application:
You must have the .NET Core SDK installed to perform this operation. See herefor supported versions.
I manually installed .Net Core SDK. The results are shown below (note that Visual Studio 20xx is not installed on this machine, just visual studio code)
C:\Program Files (x86)\Microsoft Visual
Studio\2019\BuildTools>dotnet --info .NET SDK (reflecting any global.json): Version: 6.0.302 Commit: c857713418
Runtime Environment: OS Name: Windows OS Version: 10.0.22621 OS Platform: Windows RID: win10-x64 Base Path: C:\Program Files\dotnet\sdk\6.0.302\
global.json file: Not found
Host: Version: 6.0.7 Architecture: x64 Commit:
0ec02c8c96.NET SDKs installed: 6.0.302 [C:\Program Files\dotnet\sdk]
.NET runtimes installed: Microsoft.AspNetCore.App 6.0.7 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App] Microsoft.NETCore.App 6.0.7 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App] Microsoft.WindowsDesktop.App 6.0.7 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
Download .NET: https://aka.ms/dotnet-download
Learn about .NET Runtimes and SDKs:
https://aka.ms/dotnet/runtimes-sdk-info
I've restarted my host machine, the VM image several times, stopped and restarted visual studio code. Nothing has worked. Is there additional information in logs to determine why visual studio code thinks the SDK is not installed? Or is there a particular version of the SDK required?
