Question packaging up a completed project

aronmatthew

Member
Joined
Aug 5, 2019
Messages
19
Programming Experience
Beginner
im just about finished with a project that I have been working on for a while. and I have a few questions.
1. how to create and install file or package the exe for distribution
2. how to include data files into the project as of now i just place then in the open source folder
 
In depends on what kind of project you are working on. Is it a desktop application? Is it a web application?
 
1. Search for an install packager using a search engine.
2. Generally people add files as resources and have the compiler ship the files with the installation executable within a desktop application.

If you are using a web project, you will need to specify.
 
"Visual Studio 2015 C#" doesn't tell us much since you can create a large variety of applications with Visual Studio 2015 using C#.

By ".net form" can I assume you mean WinForms? Or do you mean WebForms?
 
Back
Top Bottom