Any way to determine when the .net program was compiled / built

I need to prove that the VB.NET program that I wrote was written at a specific time.

(the reason is a study of academic integrity when someone copied my code).

I have all the code on my drive, including the debug and release folders, with my username in the build path.

Are they additional things that I can do, for example, look in binary files?

+5
source share
3 answers

IL Disassembler EXE/DLL, View > Header, COFF/PE "- ". , MSDN :

32 . , . , (00:00:00), 1 1970 , Universal Coordinated Time, .

+3

, , , - , . - .

, , .. DIR/T

  /T          Controls which time field displayed or used for sorting
  timefield   C  Creation
              A  Last Access
              W  Last Written

, :

DIR myrootdir /s /ah /as /tc > fileslist.txt

fileslist.txt

@EricJ : - , , . ( Windows) .

+1

.

, , , . , - .

, , , , , - .

The one who wrote this - well, if they do not deceive, they will understand everything in depth.

+1
source

All Articles