-1

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

DrKoch
  • 9,556
  • 2
  • 34
  • 43
Basheer AL-MOMANI
  • 14,473
  • 9
  • 96
  • 92

2 Answers2

1

try removing bin and obj folders. they are recreated when you build your application.

Here is more info about files used by Visual Studio.

I found list of files (.gitignore file) you can delete on Github

Orifjon
  • 915
  • 8
  • 25
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