void AddLibraryNodes()
		{
			Nodes.Clear();

			foreach (ProjectItem item in project.Items) {
				WixLibraryProjectItem wixLibraryItem = item as WixLibraryProjectItem;
				if (wixLibraryItem != null) {
					WixLibraryNode node = new WixLibraryNode(wixLibraryItem);
					node.AddTo(this);
				}
			}
		}
Example #2
0
        void AddLibraryNodes()
        {
            Nodes.Clear();

            foreach (ProjectItem item in project.Items)
            {
                WixLibraryProjectItem wixLibraryItem = item as WixLibraryProjectItem;
                if (wixLibraryItem != null)
                {
                    WixLibraryNode node = new WixLibraryNode(wixLibraryItem);
                    node.AddTo(this);
                }
            }
        }