Since I needed an answer for this and had to make it myself, here is the solution
Option Strict Off
Option Explicit Off
Imports System
Imports EnvDTE
Imports EnvDTE80
Imports EnvDTE90
Imports VSLangProj
Imports System.Diagnostics
Public Module RecordingModule
Sub IterateFiles()
Dim solution As Solution = DTE.Solution
For Each prj As Project In solution.Projects
IterateProjectFiles(prj.ProjectItems)
Next
End Sub
Private Sub IterateProjectFiles(ByVal prjItms As ProjectItems)
For Each file As ProjectItem In prjItms
If file.Object IsNot Nothing AndAlso TypeOf file.Object Is VSProjectItem Then
AddHeaderToItem(file.Object)
End If
If file.SubProject IsNot Nothing AndAlso file.SubProject.ProjectItems IsNot Nothing AndAlso file.SubProject.ProjectItems.Count > 0 Then
IterateProjectFiles(file.SubProject.ProjectItems)
End If
If file.ProjectItems IsNot Nothing AndAlso file.ProjectItems.Count > 0 Then
IterateProjectFiles(file.ProjectItems)
End If
Next
End Sub
Private Sub AddHeaderToItem(ByVal file As VSProjectItem)
If file.ProjectItem.Name.EndsWith(".resx") Then
file.RunCustomTool()
Log(file.ProjectItem.Name)
End If
End Sub
Private Sub Write(ByVal name As String, ByVal message As String)
Dim output As Window = DTE.Windows.Item(EnvDTE.Constants.vsWindowKindOutput)
Dim window As OutputWindow = output.Object
Dim pane As OutputWindowPane = window.OutputWindowPanes.Item(name)
pane.Activate()
pane.OutputString(message)
pane.OutputString(Environment.NewLine)
End Sub
Private Sub Log(ByVal message As String, ByVal ParamArray args() As Object)
Write("Debug", String.Format(message, args))
End Sub
Private Sub Log(ByVal message As String)
Write("Debug", message)
End Sub
End Module