NAnt.MSBuild.MSBuildProject.CreateProjectReference C# (CSharp) Method

CreateProjectReference() public method

public CreateProjectReference ( ProjectBase project, bool isPrivateSpecified, bool isPrivate ) : ProjectReferenceBase
project NAnt.VSNet.ProjectBase
isPrivateSpecified bool
isPrivate bool
return NAnt.VSNet.ProjectReferenceBase
        public override ProjectReferenceBase CreateProjectReference(ProjectBase project, bool isPrivateSpecified, bool isPrivate)
        {
            return new MSBuildProjectReference(ReferencesResolver, this, project, isPrivateSpecified, isPrivate);
        }