Questions tagged [projects]
318 questions
4
votes
1 answer
Namespace within a project or separate project
I'm trying to read about best practices in C# development. I came across people creating different class library projects within a solution. I have been developing solutions for C# but never create separate projects for my classes. Though, some of…

Reydan Gatchalian
- 171
- 1
- 10
4
votes
4 answers
Brownfield vs Greenfield development?
This is not a question with a precise answer (strictly speaking the answer would be best captured by a poll, but that functionality is not available), but I am genuinely interested in the answer, so I will ask it anyway.
Over the course of your…

John Channing
- 6,501
- 7
- 45
- 56
4
votes
6 answers
Projects that were build with GWT
I was wondering which projects were build in GWT? Especially by Google itself...

pinto
- 919
- 2
- 9
- 12
4
votes
10 answers
Should I use a software hosting solution for my personal projects?
Right now, I keep all of my projects on my laptop. I'm thinking that I shouldn't do this, but instead use a version control system and check them in/out from an external hosting repository (Google Code, SourceForge, etc). I see several benefits here…

Thomas Owens
- 114,398
- 98
- 311
- 431
4
votes
2 answers
RTC with Eclipse: is it desirable for code to be stored in a fully configured Eclipse project?
Recently my project group bought a C/C++ codebase from a contractor which does not use Eclipse. Basically a big /src tree organized for building with Autotools, with a few top-level build scripts masking some of the Autotools complexity.
Developers…

DOROTHY WIGHT
- 205
- 1
- 7
4
votes
1 answer
How to get all projects in a SBT task?
I'm writing a SBT task, which will get all projects of the whole project, then I can run some tasks against them.
The pseudo code is like:
val projects = someTaskToGetProjects.value
val updateReports = projects.map(p => (update in p).value)
But I…

Freewind
- 193,756
- 157
- 432
- 708
4
votes
4 answers
Most number of projects within a solution
for VS 2005 is there a max number of projects that will cause performance issues. We have now up to 25 projects and growing. Should we making these binary referenced or are we breaking out our application logic into too many different projects. …

leora
- 188,729
- 360
- 878
- 1,366
4
votes
1 answer
Intellij IDEA how to run a class not the entire project?
is there a way to run (not only compile) a single class (with a main method) instead to run the entire project as does Intellij IDEA?
And, is it possible to open different projects in the same window instead to opening them in a new window or in…

Coder
- 83
- 2
- 10
4
votes
3 answers
Custom File Hierarchy in emacs
I've read many questions about project-management in emacs, though they don't seem to be getting at how I like to work (which dates back to Borland days).
Basically, I'd like to create my own hierarchy of files from which I can open files for…

mdda
- 53
- 4
4
votes
2 answers
Can you add documents and spreadsheets to a Visual Studio Project?
In Eclipse, I often include all project-related material (including documents in PDF, Microsoft, and OpenDocument formats) in the project. Is this possible with Visual Studio, especially to the point where if I attempt to open the file from inside…

Thomas Owens
- 114,398
- 98
- 311
- 431
4
votes
1 answer
Running console application from a different project
I have a solution in VS2010. Under the solution, I have my main WPF application, with all the user interface, a couple of libraries, and a console application that I want to run when I click a button in my WPF application. My solution structure is…

Connor Deckers
- 2,447
- 4
- 26
- 45
4
votes
2 answers
Visual Studio 2005 Setup project install crashes over Terminal Server
I have a setup project created by Visual Studio 2005, and consists of both a C# .NET 2.0 project and C++ MFC project, and the C++ run time. It works properly when run from the main console, but when run over a Terminal Server session on a Windows…

Mike
- 1,276
- 4
- 16
- 27
4
votes
2 answers
Is this GPU video transcoding project feasible?
Recently I was approached by a guy who wants to do video transcoding using the GPU. He basically wants me to create him an application that he can sell or gain revenue from advertising.
Now he has basically asked me to tell me what I can achieve…

zenna
- 9,006
- 12
- 73
- 101
3
votes
2 answers
How to work with settings spanning over multiple Solutions and Projects in VS 2008 and .NET
I'm not quite sure how .NET and C# 3.5 handles the settings of applications spanning over multiple projects as well as multiple solutions. Maybe someone can help me clear things up.
I've got 2 solutions, both containing several projects. Some of…

Michael Klement
- 3,376
- 3
- 30
- 34
3
votes
0 answers
What are some intermediate level projects to try?
What are some intermediate level projects that include the use of Templates, Inheritance, STL should one try to learn their real use? I've read about them in the books but it just don't seem very interesting and it is easily forgettable stuff for…

user763211
- 47
- 1