Home > Net >  How to package and share a final version of a Visual Studio Project [duplicate]
How to package and share a final version of a Visual Studio Project [duplicate]

Time:09-17

I'm trying to share a Visual Studio Windows Forms Application with people but I don't know how I can export my project into a zip file that I can send to others.

CodePudding user response:

If you want to share the code:

  1. Right-Click on the solution name
  2. Open Location In File Explorer
  3. Ctrl-A > Right-Click > Send-To > Zip

If you want it in a app format:

  1. Right-Click the startup project
  2. Publish

CodePudding user response:

I figured it out. In solution explorer I went to (Restock Alerter)>publish and published the project to a folder on my desktop that I can send

  • Related