/* **************************************************************************** * * Copyright (c) Microsoft Corporation. * * This source code is subject to terms and conditions of the Apache License, Version 2.0. A * copy of the license can be found in the License.html file at the root of this distribution. If * you cannot locate the Apache License, Version 2.0, please send an email to * vspython@microsoft.com. By using this source code in any fashion, you are agreeing to be bound * by the terms of the Apache License, Version 2.0. * * You must not remove this notice, or any other, from this software. * * ***************************************************************************/ using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Runtime.InteropServices; using Microsoft.VisualStudio.Shell.Interop; using MSBuild = Microsoft.Build.Evaluation; namespace Microsoft.VisualStudio.Project { /// <summary> /// Interface for manipulating build dependency /// </summary> /// <remarks>Normally this should be an public interface but since it shouldbe available for the aggregator it must be made public.</remarks> [ComVisible(true)] public interface IBuildDependencyUpdate { /// <summary> /// Defines a container for storing BuildDependencies /// </summary> [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")] IVsBuildDependency[] BuildDependencies { get; } /// <summary> /// Adds a BuildDependency to the container /// </summary> /// <param name="dependency">The dependency to add</param> void AddBuildDependency(IVsBuildDependency dependency); /// <summary> /// Removes the builddependency from teh container. /// </summary> /// <param name="dependency">The dependency to add</param> void RemoveBuildDependency(IVsBuildDependency dependency); } /// <summary> /// Provides access to the reference data container. /// </summary> /// <remarks>Normally this should be an internal interface but since it should be available for /// the aggregator it must be made public.</remarks> [ComVisible(true)] public interface IReferenceContainerProvider { IReferenceContainer GetReferenceContainer(); } /// <summary> /// Defines a container for manipulating references /// </summary> public interface IReferenceContainer { IList<ReferenceNode> EnumReferences(); ReferenceNode AddReferenceFromSelectorData(VSCOMPONENTSELECTORDATA selectorData); void LoadReferencesFromBuildProject(MSBuild.Project buildProject); #if DEV11_OR_LATER bool ContainsReference(IVsReference node); void AddReference(IVsReference node); bool RemoveReference(IVsReference node); #endif } /// <summary> /// Defines support for single file generator /// </summary> public interface ISingleFileGenerator { ///<summary> /// Runs the generator on the item represented by the document moniker. /// </summary> /// <param name="document"></param> void RunGenerator(string document); } }