Home > Software design >  DotNet6 - projects not creating EXE
DotNet6 - projects not creating EXE

Time:03-30

Had this problem after a VS2022 install, so I've been troubleshooting. Currently, I have NO Visual Studio installed.

Windows 10

Installed .net 6 sdk 
dotnet new console 
dotnet build 

  Determining projects to restore...
  All projects are up-to-date for restore.
  net6console -> D:\net6console\bin\Debug\net6.0\net6console.dll

NEVER creates the EXE file. . Any idea what is causing this ?

CodePudding user response:

If you inspect the bin folder you will see that the exe file is created.

CodePudding user response:

I completely removed ALL .net SDKs, reboot, install the Net 6.0.3 SDK and it creates and builds fine, and generates the exe

  • Related