Hello @Anonymous ,
Welcome to Microsoft Q&A forum.
In short, the SDK is needed. If you want to create a project(based on .NET), then you need to include/import SDK in the project file(or generating it by using VS, automatically, when you create a project), unless you don't create a project.
Normally, the project templates in Visual Studio contain the necessary minimal settings which make them successfully build and run. See this document: .NET project SDKs, for .NET projects, the SDK is needed like
<Project Sdk="Microsoft.NET.Sdk.Web">
…
</Project>
Otherwise the project will not be loaded as you can see.
Sincerely,
Tianyu
- If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.