Bari.Plugins.VsCore.VisualStudio.ProjectSections.SourceItemsSectionBase.GetElementNameFor C# (CSharp) Method

GetElementNameFor() protected method

Gets the element name for a given compilation item.

The default implementation always returns Compile

protected GetElementNameFor ( Project project, string file ) : string
project Project
file string File name from the source set
return string
        protected virtual string GetElementNameFor(Project project, string file)
        {
            Contract.Requires(file != null);

            return "Compile";
        }