Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

C#

Rahul Gupta
Rahul Gupta
667 Points

How to save a project on VS and be able to use it at a later time ?

I am new at learning and have built my first console app on VS . I am not using the workspace . Is there a way to come back to this project once i start building my next one? If so how would i do that . I would also like to know if there is a way to actually use these projects that i make ? like installing them on another computer where VS is not installed, like deployment maybe ?

1 Answer

Steven Parker
Steven Parker
229,670 Points

VS should remember your recent projects.

When you start VS it should show you a list of recent projects you can select from. Plus you can always select "Open Solution" and just point to where the .sln file is on the disk.

Generally if you make a "Release" build, you should be able to deploy the executable from the bin/Release folder to any system that has the runtime libraries. Or if your target system needs the libraries, see this MSDN page on How to: Deploy a Setup and Deployment Project.