-2

I don't have a code. I have built the program in the console application and window application but I don't know how to launch those programs.

rckoenes
  • 69,092
  • 8
  • 134
  • 166
Page Tfans
  • 11
  • 7
  • 1
    The `.exe` will be found in the project folder. For example: you have a project on your desktop. The filepath would be `C:\Users\Me\ProjectName\ProjectName\bin\Debug`. Depending on how you compiled it, the folder may be `Release` instead of `Debug`. You can find the `.exe` within these files. See also: [Compile to a stand-alone executable (.exe) in Visual Studio](https://stackoverflow.com/questions/2035083/compile-to-a-stand-alone-executable-exe-in-visual-studio) – Jaskier Dec 28 '18 at 14:38
  • Try to read some tutorials before asking here https://stackify.com/cross-platform-net-core-apps/ Such questions are off-topic for Stack Overflow – Roman Marusyk Dec 28 '18 at 14:46

1 Answers1

0

You need to publish them,

Open PowerShell in the project folder, type dotnet publish and run it. You will get a published version that you can run.