Questions tagged [multiple-projects]

Questions about the difficulties that can be faced while working on several projects at the same time.

Questions about the difficulties that can be faced while working on several projects at the same time. This can be for example:

  • how to share evolving code between projects
  • how to split / merge projects
  • how to handle several projects in a IDE
145 questions
1
vote
1 answer

How can I run several projects under the same solution in Visual Studio via script

I'm using vs2013. I have one solution with 15 projects under it. I need to run each project, in specific order, and can't run them parallel. (need to wait until first one is finish, and only then run the second one, and so on..) For now, I'm doing…
shlomi
  • 523
  • 3
  • 13
  • 26
1
vote
1 answer

Python how to share package between multiple projects

I have a package that contains protocols for specific hardware from multiple vendors. This is basically a collection of multiple different protocols that have similar interface. It is ported to python by me. But now I have two projects that handle…
Pavlo
  • 1,594
  • 2
  • 15
  • 30
1
vote
0 answers

Django two projects, same database

I try to set up two projects, The first is a management project - it involves auth_user, sessions, writing to db. The second project is a "serve content" project, it only read from the db, uses no sessions, users.. It rely on db data created in the…
user3599803
  • 6,435
  • 17
  • 69
  • 130
1
vote
1 answer

Using Jenkins with multiple C projects, ClearCase and shell/batch

BACKGROUND : We are working on a few C projects, and the sources are in ClearCase. Each project have his own project ClearCase. My mission consists in putting all of them into Jenkins. There is no Continuous integration so far on this projects. Some…
Guildias
  • 113
  • 5
1
vote
1 answer

controlling an application solution with multiple multithreaded projects

from my main project I am running some other executables mainly from the current solution. the output window shows me info on exiting threads when I suspect they shouldn't, what leads me to the question, how do I run my application child projects…
1
vote
1 answer

Two distinct projects with a shared dependent project in maven

I have two projects, "appA" and "appB", that each depend on a third project, "common". I'm in the process of moving them from ant to maven, but I'm having some difficulty figuring out the best way to do it in maven. My folder structure looks like…
jgor
  • 27
  • 1
  • 4
1
vote
0 answers

Gradle + Eclipse + Multiproject: How to not export provided JARs that are dependencies of a dependency?

I have a multiproject project with a core project ace2 that is dependened on; it has dependencies. I cannot seem to get the transitive dependencies to NOT to end up in the other project dataentry2, War's web-inf\lib directory even when using a…
HankCa
  • 9,129
  • 8
  • 62
  • 83
1
vote
0 answers

NodeJS and multiple mini programs

I know that this question is going to slightly broad and it is a development theory question. But I have a client who wants the ability for one nodejs application to be able to host multiple mini programs inside of it using the same structure as…
1
vote
1 answer

How to setup a shared source-folder among 3 Projects (Modules) in IntelliJ IDEA?

I had a project setup like this in Adobe Flash Builder: (tried to illustrate it the best I could) Basically, GameProj and TitleProj are compiled down to their own SWFs. They each have their own specific source-folder (src-nameofproject), as well as…
1
vote
2 answers

How to setup Flash Builder compiler constants ONCE for multiple projects in the same Workspace?

Is there any way to link some Flex or AS3 compiler options so that multiple projects in the same workspace can share the same Compiler Constants values? Basically, I will need to frequently change the "LANG_ENG" and "LANG_FR" to true and false, for…
1
vote
1 answer

How to turn off debugging on a project in eclipse?

My situation demands I have two copies of the same project. One is for development, the other is for debugging, testing and single stepping to understand the existing workflow. As a consequence I have two copies of the same project. I would like…
Ace
  • 1,501
  • 4
  • 30
  • 49
1
vote
0 answers

clang: error: while accessing a library(contains kiss xml) in sub-project

We have a workspace with the below structure: SampleProject1 SampleProject2 >>Sub-Project Now, we are trying to access the SampleProject1 in Sub-Project. After setting the Header Search Path in Sub-Project able to access the Sampleproject1.…
Bhanu Prakash
  • 1,493
  • 8
  • 20
1
vote
1 answer

Can I have notify icon for my external program called by shell?

I'm developing one exe program (A) that have link to call another exe(B). But then, I have an issue to set up notify icon for exe (B). Here codes to call exe(B): Private Sub LinkLabel1_LinkClicked(sender As Object, e As…
zira
  • 117
  • 1
  • 1
  • 9
1
vote
1 answer

Use a usercontrol from another project to current webpage

I have created a test webform where it is under the AspPage Project. then I have 3 user controls in TestUserControl Project. Is it possible to register/add the user controls in the webpage? I have seen one tutorial where the user controls are copied…
1
vote
1 answer

How to interact between multiple VB projects

I have seen before having a project reference another project, but then only that project can interact with the referenced project, the referenced project cannot interact with the other project. Is it possible to have multiple VB.Net projects in a…
TheRyan722
  • 1,029
  • 13
  • 37