Hey,
I'm working on a Policy-Plugin and need to know if the following is possible.
I use the Paramter IPendingCheckin and with PendingChange[] changes = pc.PendingChanges.CheckedPendingChanges; I get all checked PendingChanges.
Now I work with a foreach-loop to do checks for each file.
foreach (PendingChange change in changes)
{
/*Do stuff here*/
}
My question is now if it is possible to get for each change the associated solution, if one is avialable, or is there a good workaround for this?
I need the dte.solution for each pendingChange or null if no solution for this file is avialabe.
Thanks in advance!