Some IDEs organize code and resources into projects and solutions, usually in a directory-based hierarchy. This can also be done manually.
76
votes
5answers
42k views
What are the various “Build action” settings in VS.NET project properties and what do they do?
For the most part you just take whatever Visual Studio sets it for you as a default.. I'm referring to the BuildAction Property for each file selected in your solution explorer. There are a number of ...
75
votes
9answers
8k views
How do you organize your version control repository?
First, I know about this: http://stackoverflow.com/questions/51217/how-would-you-organize-a-subversion-repository-for-in-house-software-projects
Next, the actual question:
My team is restructuring our ...
63
votes
10answers
30k views
How do I rename a Project Folder from within Visual Studio?
My current solution for renaming the project folder is:
Remove the project from the solution.
Rename the folder outside Visual Studio.
Re-add the project to the solution.
Is there a better way?
46
votes
16answers
3k views
Should a .sln be committed to source control?
Is it a best practice to commit a .sln file to source control? When is it appropriate or inappropriate to do so?
Update
There were several good points made in the answers. Thanks for the responses!
46
votes
11answers
6k views
Best practices for large solutions in Visual Studio (2008)
We have a solution with around 100+ projects, most of them C#. Naturally, it takes a long time to both open and build, so I am looking for best practices for such beasts. Along the lines of questions ...
21
votes
9answers
5k views
Visual Studio open files question
Is it possible to open a project in Visual Studio 2008 without opening all the files that were previously opened last time I had the project open. I have a habit of keeping many files open as I am ...
20
votes
4answers
8k views
Visual Studio Solutions / Multiple project : How to effectively propagate project properties amongst several C++ projects
I am working with a Visual Studio 2005 C++ solution that includes multiple projects (about 30).
Based upon my experience, it often becomes annoying to maintain all the properties of the projects ...
19
votes
8answers
3k views
Structuring projects & dependencies of large winforms applications in C#
UPDATE:
This is one of my most-visited questions, and yet I still haven't really found a satisfactory solution for my project. One idea I read in an answer to another question is to create a tool ...
19
votes
6answers
2k views
Tips and tricks for working with Microsoft Visual Studio solutions and project
After answering on this question I thought it would be nice to collect some tips & tricks for working with MSVS solutions and projects.
Here is my list:
How to avoid saving new projects
...
19
votes
6answers
6k views
Display solution/file path in Visual Studio IDE
I frequently work with multiple instances of Visual Studio, often working on different branches of the same solution.
VC6 used to display the full path of the current source file in its title bar, ...
17
votes
8answers
17k views
VS2008 Setup Project: Shared (By All Users) Application Data Files?
fellow anthropoids and lily pads and paddlewheels!
I'm developing a Windows desktop app in C#/.NET/WPF, using VS 2008. The app is required to install and run on Vista and XP machines. I'm working on ...
15
votes
2answers
2k views
Disable drag&drop in solution explorer
Is there a way to disable the drag&drop functionality for Solution Explorer?
Why would you ask? I'm using an wacom pen tablet for quite some years and I love
it. But when you use it in solution ...
13
votes
5answers
388 views
Is there an alternative / plugin for Visual Studio's configuration manager?
I have the need to remove and rename a selection of solution/project configurations in visual studio, are there any tool which will help with this?
I'm finding the built in tool very unhelpful. For ...
13
votes
3answers
1k views
Why is “Set as Startup” option stored in the sou file and not the sln file?
It seems like this setting should be stored in the solution file so its shared across all users and part of source code control. Since we don't check in the sou file, each user has to set this ...
13
votes
8answers
3k views
ASP.NET Web Site or Web Project
When creating a new ASP.NET project in Visual Studio should I chose create: website or project?
I understand that web application project was the way to do it back in the day with VS 2003 but is it ...
11
votes
4answers
2k views
Visual Studio 2010 & 2008 can't handle source files with identical names in different folders?
Direct Question: If I have two files with the same name (but in different directories), it appears that only Visual Studio 2005 can handle this transparently?? VS 2008 & 2010 require a bunch of ...
11
votes
5answers
621 views
Keeping all Visual Studio projects in sync with a library
Scenario
I have a Library that contains Projects A, B, and C.
I have two solutions. Solution 1 includes a copy of Project A, and Solution 2 includes a copy of Projects A and B.
When I build ...
11
votes
7answers
2k views
Folders or Projects in a Visual Studio Solution?
When spliting a solution in to logical layers, when is it best to use a separate project over just grouping by a folder?
10
votes
4answers
2k views
Merges on IntelliJ IDEA .IPR and .IWS files
We keep our IntelliJ .IPR and .IWS files in our source control, but they keep getting modified by IntelliJ just by opening them, even without any work being done on the project.
What are we doing ...
10
votes
17answers
763 views
Reasons not to code a program?
Let's play the devil's advocate: what would be the reasons you would give management NOT to code a solution, but purchasing an expensive package?
9
votes
2answers
2k views
What is the significance of ProjectTypeGuids tag in the visual studio project file
What is the significance of the ProjectTypeGuids tag in a visual studio project?? When I created a WPF application, i am seeing two guids in here.
...
9
votes
5answers
679 views
When do you decide to split up large projects into smaller projects?
When/where do you decide to split a large visual studio project into smaller multiple projects? if it can be reusable? when project is too big? (but how big is too big?)
..and When you do split the ...
9
votes
4answers
172 views
How do you remove/clean-up code which is no longer used?
So, we have a project which had to be radically descoped in order to ship on time. It's got a lot of code left in it which is not actually used. I want to clean up the code, removing any dead-wood. ...
9
votes
10answers
12k views
Weird MSC 8.0 error: “The value of ESP was not properly saved across a function call…”
We recently attempted to break apart some of our Visual Studio projects into libraries, and everything seemed to compile and build fine in a test project with one of the library projects as a ...
8
votes
2answers
704 views
Visual Studio 2010 Express
Is it possible to open / edit a normal Visual Studio Solution with Visual Studio Express Edition ?
8
votes
2answers
2k views
F#, namespaces, modules, fs and fsx
I'm aware of other questions about modules and namespaces in F#, but they're not helping me right now.
I've got a project with
Utilities.fs
namespace Company.Project.Namespace
module Utilities =
...
8
votes
3answers
2k views
Visual Studio: Solution-wide pre-build event?
I have a solution in Visual Studio which contains several projects. I'd like to run a command at the very beginning of every build - no matter which projects are involved and whether or not they are ...
8
votes
6answers
746 views
Should a Visual Studio project be contained in more than one solution?
Note: This is for a shop that works in C++, C++/CLI, and C# with some products being delivered as a combination of all three.
We currently have a rule that a project should have one and only one ...
7
votes
4answers
12k views
How do I start a CUDA app in Visual Studio 2010?
Direct Question: How do I create a simple hello world CUDA project within visual studio 2010?
Background: I've written CUDA kernels. I'm intimately familiar with the .vcproj files from Visual ...
7
votes
3answers
769 views
The Ultimate Visual Studio Solution Structure
Realizing that this could be subjective based on the project at hand, I'm looking for the "best practice" method of structuring a VS Solution.
Please feel free to edit this, comment on what you think ...
7
votes
1answer
125 views
In a C# solution, Where do you declare solution-scope enums?
In a C# solution, Where do you declare solution-scope enums ?
7
votes
4answers
1k views
Visual Studio Project Comparison
Is there a program or add-on to Visual Studio 2008 that will compare and show the differences in 2 solutions. I currently have 2 solutions, a "live" project and a new version of the project with some ...
7
votes
5answers
727 views
How do you Setup your Unit Test Project(s) in .Net?
Can you share the way you setup your unit test projects within your .net solutions?
I can imagine several possible methodologies. For example:
Having a separate solution for unit tests, perfectly ...
7
votes
4answers
2k views
ASP.net MVC project structure
Hi guys
I have created the following project structure for my new asp.net mvc project any I was after some feedback as how other people are structuring their projects and if I would improve mine...
...
7
votes
3answers
1k views
Typical structure of an ASP.NET solution?
As the title says, I'm interested to know how you typically structure your ASP.NET solutions.
I'm especially interested in ASP.NET WebSite solutions, but information abut other types (WebApplication, ...
7
votes
5answers
3k views
Suggestions for maintaining Visual Studio vcproj project files in version control
Microsoft Visual Studio uses XML to save its .vcproj project files. So diffing XML project files should be easily.
Unfortunately, if you change any of the project file's properties, Visual Studio ...
7
votes
3answers
1k views
Working with different versions/branches of the same Visual Studio 2005 solution
This is kind of a usability question for using VS2005: I have different branches of the same Visual Studio 2005 solution checked out from version control. The solution and project files are also under ...
7
votes
10answers
3k views
Does the number of projects in a Visual Studio 9 solution impact the solution load and build times?
I'm specifically interested in solution load times & build times - does fewer solutions mean better performance?
Note that I'm not referring to the performance of the built application.
Are load ...
7
votes
2answers
1k views
Common Files in Visual Studio Solution
Many times I have seen Visual Studio solutions which have multiple projects that share source files. These common source files are usually out in a common directory and in the solution explorer their ...
6
votes
4answers
109 views
Which visual studio solution type is right for me?
I currently have a program that i wrote that is divided up into 3 separate solutions.
Front end (all display related stuff)
Parsers (multiple (39) projects that each create a dll to parse specific ...
6
votes
1answer
842 views
Visual Studio 2010 “Solution platforms” popup missing
I'm getting a weird problem with Visual Studio 2010 Premium. I use two PCs, on the first there is no problem on the second the "Solution Platforms" popup menu disappeared, the configuration is the ...
6
votes
12answers
271 views
the best or speedest way to understand uncommented and complex project
I have complex project without comments. The project is programed in Java but have more than one main class, use several .txt files like a template and use several .bat files. I don't know where to ...
6
votes
2answers
1k views
TFSBuild/MSBuild and Project Reference vs File Reference
We Have a large VS solution using project references which is build by TFS Build like so:
Solution
- Project 1
- Project 2
- Project ...
- Project N
Because the solution is too large we have ...
6
votes
5answers
748 views
How can I refer to a project from another one in c#?
I added a project, Project2, to my solution. It already had another project lets say Project 1. How can I call classes and methods from project2 into project1?
What I did:
I have Project 1 and its ...
6
votes
2answers
688 views
asp.net MVC Solution/Project layouts
This is more of an open question rather than looking for one specific answer.
As we all know there is no one answer that fits all solutions but I am curious to find out how you structure you asp.net ...
6
votes
5answers
1k views
What is the best pattern for using same Log4net logger across many assemblies in a solution?
I have a solution consisting of a main winforms app, with associated internally written class library dll’s from which I wish to log. This logging should performed by the same logger, regardless of ...
6
votes
10answers
1k views
.NET solution - many projects vs one project
We currently have a rapidly growing C# codebase. Currently we have about 10 projects, split up in the usual categories, common/util stuff, network layer, database, ui components/controls etc.
We run ...
6
votes
8answers
571 views
How do you convince upper management that something can’t be done?
When you are employed as a developer, you usually don’t get a chance to choose on what you will work. It might be a new application that must be written, it might be an old one that needs maintaining, ...
6
votes
2answers
858 views
VS2008: Where is the Startup Project setting stored for a solution?
When I right-click my solution in the Solution Explorer and choose Properties I get a dialog where I can select the Startup Project.
I sometimes select Current selection (If it is an experimental ...
6
votes
8answers
6k views
How to link multiple visual studio solutions together?
I have 3 solutions and solution A requires built versions of the dlls from solution B and C in order to compile. it is not possible to merge it to one solution...
So far it seems that Visual Studio ...