Questions tagged [projects-and-solutions]

Some IDEs organize code and resources into projects and solutions, usually in a directory-based hierarchy. This can also be done manually.

1354 questions
9
votes
3 answers

QT - Specify DLL path in pro. file

So as the question title says, i'm specifically wondering how to include the path to a .dll file in the actually project file. I know it's the better practice to include the dll file with the project file, but i'd still just like to know if it's…
Danran
  • 471
  • 1
  • 7
  • 21
8
votes
2 answers

how to make a Visual Studio project file to copy indirect references?

As the screenshot shows, ClassLibrary1 relies on ClassLibrary2 and ClassLibrary2 relies on ClassLibrary3. And "Copy Local" is set to be "True". But when I compile ClassLibrary1, ClassLibrary3 won't be copied to the bin folder. So how can I config…
8
votes
1 answer

What's up with 'Microsoft' as the default company and copyright on project settings in Visual Studio?

I noticed that when I enter the Assembly Information dialog, for a project created in Visual Studio 2010 Visual C#/Basic 2010 Express ...the company and copyright fields default to Microsoft (...). How odd is that? If a developer were to forget…
8
votes
4 answers

Intellij Idea problem with text file impossible to read

I have a problem using Intellij Idea. I am absolutely unable to load text file as InputStream - it doesnt matter where do I put the file (main/java, main/resources...) it just can't find the file - in Eclipse everything works just fine. I tried…
Jarek
  • 7,425
  • 15
  • 62
  • 89
8
votes
1 answer

Why doesn't .sln files use XML format in .NET?

What was the particular reason behind that decision? It confuses me even more, since .csproj files has XML format.
Attila Kun
  • 2,215
  • 2
  • 23
  • 33
8
votes
3 answers

.NET find dead code across multiple solutions

We have a product with ~15 solutions with each a number of projects. The question is quite simple: Which tool will enable us to search the entire codebase for dead code? Searching within a single solution is easy enough (Lots of answers on SO for…
8
votes
1 answer

How to auto add dependent projects to include path in Visual Studio

So I've always had to use the project's "Additional Include Directories" property to set relative paths to other (library) projects that I'm dependent on for a given solution. So the solution structure is essentially: My App.sln -> My App.vcxproj ->…
Mordachai
  • 9,412
  • 6
  • 60
  • 112
8
votes
1 answer

Add a Form that is in my Project to another Project

I have a Project in which there is a form that has several objects (controls) in itself. I want to add this form to another Project in another Solution. How to I can do this. Thanks.
Tavousi
  • 14,848
  • 18
  • 51
  • 70
8
votes
10 answers

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 times and build times more efficient when working with…
ripper234
  • 222,824
  • 274
  • 634
  • 905
8
votes
3 answers

When is it really necessary to place Go source code in $GOPATH/src?

Take a look at this shell session, where I build a simple hello world program in Go. $ cd ~/lab/hello/ $ ls hello.go $ cat hello.go package main import "fmt" func main() { fmt.Printf("hello, world\n") } $ go build $ ./hello hello, world $ go…
Lone Learner
  • 18,088
  • 20
  • 102
  • 200
8
votes
3 answers

Multiple WCF Projects vs Single Project in Solution

Currently we have 12 WCF projects in our solution. Each project is essentially it's own endpoint. For example the "Order" WCF project is the Order.svc endpoint. These 12 endpoints are exposed by a single WebHost project. The WebHost project has…
Jeepasaurus
  • 181
  • 3
  • 7
8
votes
2 answers

Splitting up a .NET solution/Git repo for multiple apps

I currently have a single solution that contains both the one application developed so far and projects for all of the homegrown libraries. This entire solution is also kept in a single Git repo. I am now going to be developing a second…
siride
  • 200,666
  • 4
  • 41
  • 62
8
votes
4 answers

Eclipse Java Projects in Git

I am trying to figure out the best way to create a java project in GIT. In particular I would like to create the git repository such that when I import from git in Eclipse, the project is automatically created correctly with all its .project…
tompkinr
  • 81
  • 1
  • 3
8
votes
1 answer

How to show nested pri files in project pane of Qt Creator?

I have a .pri file named Deploy.pri in my project .pro file. Deploy.pri : include(part1.pri) include(part2.pri) As you see it includes two other .pri files. These pri files are displayed in Qt Creator project pane in the same level : I want to…
Nejat
  • 31,784
  • 12
  • 106
  • 138
8
votes
4 answers

Visual studio project template creating solution file in outer directory

I am creating multiproject template for Visual studio using VSTemplate. I am new to project template and refering this url to create multi project template for Visual Studio.
Jenish Rabadiya
  • 6,708
  • 6
  • 33
  • 62