there are compiled objects and files which created for debugging
these files I think that I can delete it, what is it.
the actual problem happen when I trying to submit the solution on the Elearning system, the maximum size allowed was 1MB and the project after compress 1.435 MB
you know, the project must open without Problems on side Teacher
Asked
Active
Viewed 3,215 times
-1

DrKoch
- 9,556
- 2
- 34
- 43

Basheer AL-MOMANI
- 14,473
- 9
- 96
- 92
-
Do you need to submit source code only, or with compiled files? – Orifjon May 09 '15 at 15:29
-
the source code , and he will recompile the project, ,,,,its windows form Application,sorry – Basheer AL-MOMANI May 09 '15 at 15:37
-
try removing `bin` and `obj` folders – Orifjon May 09 '15 at 15:39
-
oh it works, thank you,,but what are these folders? – Basheer AL-MOMANI May 09 '15 at 15:43
2 Answers
1
If it's just source code you have to deliver, you can safely delete the bin
and obj
folders in your project. They only contain build or copy results of your solution.
1 MB is a lot of data if it's only in source code, which seems a bit unlikely for a school project. If you have some binary files in your resources, check if you can compress them (like using png
or jpg
instead of bmp
files, or mp3
for sounds instead of wav).

kaedinger
- 94
- 6