Question

I have recently been tasked with updating a system done in C#. I am coming from a Kohana MVC web based development but have experience in C#.

Problem is: My solution is in some 'weird' namind convention. I would like to know what it could be and how to load the solution in VS 2010 Ultimate.

MySolution.BusinessLogic
MySolution.Common
MySolution.Contracts
MySolution.DataAccess
MySolution.DatabaseInstaller
MySolution.Entities
MySolution.Reporting
MySolution.UI
MySolution.UIControls

How does this work? Do I need to edit each folder separately or there is a way to load the whole solution in my developer IDE?

Était-ce utile?

La solution

There should be a .sln solution file, probably in the project root folder. That is typically what you would open in Visual Studio. You can open individual project files (.csproj), but its much easier/better to work with a solution that contains all required projects.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top