I installed Visual Studio 2017 version 15.6.5
(the latest) and now when I create a new Visual F#
project under .NET Standard
the only alternative is Class Library (.NET Standard)
. I would like to create a Console Application
. How can I do that?
Asked
Active
Viewed 60 times
2

Soldalma
- 4,636
- 3
- 25
- 38
-
you can still run the dll with `dotnet run`. If you want an exe create .net core app, then run `dotnet publish -c Release -r win10-x64` (if you're on windows), this will put the exe under the Release folder. – s952163 Apr 07 '18 at 00:31
-
2Try ".NET Core" instead of ".NET Standard". ".NET Standard" is only meant to be used for libraries, not apps. – Foole Apr 07 '18 at 03:45