Is it possible to make a separate program from a C # project that can be run independently of visual studio? To run on computers without visual studio.
- 2@Vezd, Is it different? - Nicolas Chabanovsky ♦
- 2Just to be standing. NET Framework ... - Specter
- And what files need to copy from the project? - Vezd
- In your case, only compiled executable. - Specter
|
2 answers
When you run VS, open a project, then run it (F5) and then you can close it, then go to the folder where your projects are stored (by default, this is C:\Documents and Settings\User\Мои документы\Visual Studio 2010\Projects ) There, find the directory with your project, go to it, then bin\Debug\Название проекта.exe only it, do not need to copy the entire folder.
- I have another ddl library connected to the project. If I take only one exe file with the name of the project, then when using the functions that are associated with the ddl library, an error appears. Means it is necessary also to take these ddl? - Vezd 4:05 pm
- Well in that case, copy the library too. - Angus123
|
When you run a project in VS, the program is compiled. In the project folder, find the bin folder, then Debug or Release, depending on the project configuration. Or I did not understand the question?
- The whole Debug folder to take? - Vezd
|