Visual Studio Macro: How to perform "File -> Save All" programatically
- by Sean B
I am looking for the equivalent of running "File - Save All" before certain Rake macros.
What I have so far is:
Private Sub Pre_Rake()
Dim i As Integer
DTE.Documents.SaveAll()
For i = 1 To DTE.Solution.Projects.Count
If Not DTE.Solution.Projects.Item(i).Saved Then
…