NuGet.Common.MSBuildProjectSystem.RemoveReference C# (CSharp) Method

RemoveReference() public method

public RemoveReference ( string name ) : void
name string
return void
        public void RemoveReference(string name)
        {
            ProjectItem assemblyReference = GetReference(name);
            if (assemblyReference != null)
            {
                Project.RemoveItem(assemblyReference);
            }
        }