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

Android library project is not getting included in Gradle build

This query is continuation to my previous question as i did not get answer so i am requesting here. My previous question can be found here (android - gradle multiproject include and exclude libraries) With productFlavors, one can avoid include and…
user2318724
  • 259
  • 5
  • 16
1
vote
0 answers

Android + Scala + library project: NoClassDefFound

I have a similar issue as in the SO question below, but with scala as my language of choice: Android project referencing "normal" java project in eclipse since sdk tools update 17 Basically, if I setup a regular android project using java, a regular…
1
vote
1 answer

Multiple Copy of an Asp.Net MVC Project

We have an abstract asp.net mvc project which has many copies. Actually every copy project has almost same functionality. But sometimes it can be different in some actions and controllers. Also, every copy project has their own theme. But they share…
oruchreis
  • 866
  • 2
  • 12
  • 28
1
vote
2 answers

Mercurial managing subtle variations/configurations of a same project

I am currently using Mercurial, along with the Guestrepo extension, to manage and version the different components of a project. I have come to a quite stable workflow to manage the different versions of the components. However, I can't come up with…
Manex
  • 528
  • 4
  • 15
1
vote
1 answer

android multiple projects share same library issue

I am developing android apps using android sdk. I have a common library that is shared by multiple projects. The projects use the same code from the shared library but with their own res, image, and sound, etc. But if these projects are installed…
Emmy
  • 3,949
  • 5
  • 28
  • 30
1
vote
1 answer

XSD DataSet -- using connection string from another project at design-time as well as run-time

We have a VS2010 solution that includes a web app (the startup project) and a class library for data access. The connection string is stored in the web app in a connectionString.config, which is referenced in the web app's web.config. The existing…
1
vote
1 answer

Eclipse working with multiple projects

I have two projects written in C++. Suppose that the projects are named first and second, the first being the base project, the second project has addons for the first so when I build and install the second project, it just adds to the functionality…
srnvs
  • 997
  • 2
  • 10
  • 22
1
vote
0 answers

Accessing Classes from Other Programs within a Solution

I've already read posts about referencing the namespaces of the programs with the "using" statements at the top of the program here and here and here. I've added the appropriate references, made the classes public, and referenced the appropriate…
KrazyKate
  • 11
  • 2
1
vote
0 answers

Parallel builds in Eclipse collide

I have two C++ Eclipse projects (each pointing to different sandboxes of version-ed code) imported in separate workspaces. I am launching two parallel sessions of eclipse on different machines and then want to build these two projects in parallel.…
0
votes
1 answer

merging multiple projects into one project in solution

Is it possible to create solution in which I'll have some projects of Class Library type, and another one merging project, that will be Class Library containing source of all other projects in solution ?
0
votes
2 answers

Handling multiple projects in TFS - some tools available?

I am facing this ridiculous problem. I have more than 150 projects in tfs, and when i need to give admin rights to a particular person, or give portal rights, enable documents folder, change templates, get a combined report, etc, it gets tedious job…
Dipti Mehta
  • 537
  • 3
  • 13
0
votes
1 answer

Unresolved external

I am having difficulty figuring out my unresolved external errors. I have 2 different solutions that both share a core project. Solution #1 is called SnapGame and Solution #2 is called SnapEditor. The core project is called SnapCore. My SnapGame…
SnapGames
  • 375
  • 3
  • 10
0
votes
1 answer

C# report error when calling multiple reports from within WPF project in the same solution

I'm currently trying to use multiple reports so that when a user selects an item from a context menu in a WPF application the Report form appears with the selected report E.g. if weekly is selected from the context menu a weekly report needs to be…
Brandonm
  • 516
  • 1
  • 6
  • 19
0
votes
0 answers

Python combine multiple projects to one global project

I was wondering how I can combine multiple projects, each of them within an own virtual environment, to one global project. For example this structure: Python | |-- Send_Mails | |-venv | |-main.py | |-- Create_Files | |-venv | …
Stacknewb
  • 1
  • 1
0
votes
1 answer

Is there any way to serve another laravel project from totally separate laravel project on the basis of domain?

Our situation is, We have two laravel projects on the same server suppose (project A & project B) and we have one domain like domain.com And a subdomain like *.domain.com. Project A is pointed to domain.com project B is pointed to *.domain.com Now,…