Click here to Skip to main content
15,886,578 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Does anyone know where I can find these libraries/libraries that contain these namespaces:
C#
using Microsoft.Tools.Graphs;
using Microsoft.Tools.Graphs.Bars;
using Microsoft.Tools.Graphs.Pies;
using Microsoft.Tools.Graphs.Legends;


I recently downloaded a sample GUI designer application from Microsoft website. I downloaded and extracted the files and tried to build the solution.

http://msdn.microsoft.com/en-us/magazine/cc163634.aspx[Link to the files I downloaded^]
Posted

The above mentioned namespaces does not sound standard ones and should be form a custom library.

I browsed the link. It looks like the above mentioned classes/namespaces are in file:GraphLibrary.dll
It is present in [root]/Binaries/ folder.
 
Share this answer
 
Open the solution and change the framework version of all the project > 2.0, then build it will be build. It worked for me.
 
Share this answer
 
Comments
bianrywriter 7-Jul-14 2:34am    
It worked for me, too.
I would suggest that you include the libraries in your solution, and then have to add reference. That way if somebody else tries to build your project they will have all the files they need. Otherwise, they will have to also download the library.

Once you reference the files, even if you do not include the files in your project, Visual Studio keeps track of the path, the compiler can find the assemblies.
 
Share this answer
 
Did you download this assembly and include it in your project? http://msdn.microsoft.com/en-us/magazine/cc164606.aspx?code=true&level=root%2cBinaries[^]
 
Share this answer
 
Comments
HM India 27-Apr-13 4:13am    
Yes I downloaded the DesignerHosting.exe from your mentioned location. Opened the solution in Visual studio. Just change the .net framework runtime version of all the projects and do the Rebuild Solution. It will work.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900