File: Microsoft\Build\Tasks\IAssemblyEnum.cs
Project: Microsoft.Build.Tasks.v4.0.dll (Microsoft.Build.Tasks.v4.0)
#region Assembly Microsoft.Build.Tasks.v4.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\Microsoft.Build.Tasks.v4.0.dll
#endregion
 
using System;
using System.Runtime.InteropServices;
 
namespace Microsoft.Build.Tasks
{
    [Guid("21b8916c-f28e-11d2-a473-00c04f8ef448")]
    [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
    internal interface IAssemblyEnum
    {
        int Clone(out IAssemblyEnum ppEnum);
        int GetNextAssembly(IntPtr pvReserved, out IAssemblyName ppName, int flags);
        int Reset();
    }
}