Arghhh!
Maledizione. Due ore di lavoro buttate al vento (oltre a due ore da mettere in preventivo per cercare il responsabile di questo crash!!)
NOTE TO SELF: Cercare al più presto un plugin VS per salvare ogni 2 minuti!
Potrebbero interessarti anche:
Commenti (1):


Facebook,
Wikio,
Segnalo.

martedì 29 agosto 2006 alle 7:53 PM -
Option Strict Off
Option Explicit Off
Imports System
Imports EnvDTE
Imports EnvDTE80
Imports System.Diagnostics
Imports System.IO
Public Module CrashSaver
' author : amok
' version: 0.1
Sub EnzinoSaver()
' you can use a timer here or add this code to the build event
Dim f As New FileInfo(DTE.Solution.Projects.Item(0).FullName)
If f.LastAccessTime.Minute < 30 Then
DTE.Documents.SaveAll()
End If
End Sub
End Module
ecco qui
ora ogni 30 minuti ti salva dal crash eh eh
Permalink - Rispondi al commento