It's not anything critical, but when working on projects all day long, we know when code changes happen, but there's currently no way of knowing when the last publish happened. Is there some kind of way to modify the build file to dump a time stamp to the output window when building? https://i.sstatic.net/ZHM2i.png
i've tried this in the csproj file
<PostBuildEvent>
<Command>ECHO ============ %TIME% ============</Command>
<Message>build time</Message>
</PostBuildEvent>
and i've tried time /t for the command.
time /t?time /tis simply the CMD.exe command (there's a similardate /tcommand)