NuGet.LocalPackage.IsAssemblyReference C# (CSharp) Method

IsAssemblyReference() protected method

protected IsAssemblyReference ( IPackageFile file ) : bool
file IPackageFile
return bool
        protected bool IsAssemblyReference(IPackageFile file)
        {
            if (_references == null)
            {
                throw new InvalidOperationException(NuGetResources.Manifest_NotAvailable);
            }

            return IsAssemblyReference(file, _references);
        }

Same methods

LocalPackage::IsAssemblyReference ( IPackageFile file, IEnumerable references ) : bool
LocalPackage::IsAssemblyReference ( string filePath ) : bool
LocalPackage::IsAssemblyReference ( string filePath, IEnumerable references ) : bool