-2

I have to create a form for a task that is done by multiple people at the company I work for. Due to the circumstances, I have choosen Windows Forms and C# to make it. However, I'm not sure how I'm going to make the program available to my colleagues.

In Python, I use PyInstaller to create a .exe file and distribute my programs in a way that no one needs to install a Python interpreter to use it. Is there anything similar for C#?

Filburt
  • 17,626
  • 12
  • 64
  • 115
csantos
  • 47
  • 5
  • Related: [Quick start: Deploy .NET Windows Desktop application using ClickOnce](https://learn.microsoft.com/en-us/visualstudio/deployment/quickstart-deploy-using-clickonce-folder?view=vs-2019) – John Wu Jul 14 '21 at 21:26
  • Does this answer your question? [Develop and Deploy the software which made in C#.Net](https://stackoverflow.com/questions/22527002/develop-and-deploy-the-software-which-made-in-c-net) – Filburt Jul 14 '21 at 21:29

1 Answers1

1

Right click project and choose publish.

There’s a lot of tutorials about it.