Click here to Skip to main content
15,913,487 members
Please Sign up or sign in to vote.
2.67/5 (3 votes)
See more:
I have downloaded a project containing C# codes and dlls.
I want to open it in visual c# and run
how to do that?
do I have to create a new project?
Posted
Updated 24-Jan-11 3:47am
v2

Have a look within the directory that contains the code you've downloaded

Is there a .sln (solution) file? If so, double click to open it! All projects and references in the solution will be loaded


IF there's no solution file, have a look for file type .csproj and try and open that
 
Share this answer
 
Just find .sln or .csproj file, and open it in visual studio.

If this doesn't help, then tell us more about VS version you use and the files you downloaded.
 
Share this answer
 
You can download visual express 2010 from microsoft.com.
Install and Enjoy it!
 
Share this answer
 
If you just have DLLs there and no exe, then you may need to create a stub app that then calls into those DLLs.

Alternatively, if you just have cs files and no project/solution files, then create a new blank project and manually add the cs files to the project.
 
Share this answer
 

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