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
4
votes
3 answers

Is there an equivalent to the "Property Manager" for C# projects (for common project settings)?

You can use the Property Manager window in Visual Studio for managing common properties of C++ projects, but there appears to be no equivalent to this for C# projects. Is there a way to set common settings across multiple projects? Examples of…
Kit
  • 20,354
  • 4
  • 60
  • 103
4
votes
2 answers

adding reference of separated project to more than 50 projects - Visual Studio 2010

We had to separate a class library from core library project. And now, we should add the reference of the new project to the other 50 or something projects in a solution, which is ASP.NET MVC solution if it matters. Is there any way to automate this…
Tae-Sung Shin
  • 20,215
  • 33
  • 138
  • 240
4
votes
1 answer

Updating Python interpreter in multiple projects at the same time

Using PyCharm, it's possible to have multiple projects in the same window / environment. Each project has its own interpreter configuration in the Project > Python Interpreter section. Is there an easy way to switch all projects to the same…
Masklinn
  • 34,759
  • 3
  • 38
  • 57
4
votes
1 answer

eclipse, ant & mercurial with multiple (sub) projects

Yet another multiple projects question, I know. I've seen (conflicting) answers to subsets of my goals but nothing that covers it all. I'm new to eclipse and don't know the dirty details of hg. Given a common library jar, two apps and some common…
tlc
  • 41
  • 3
4
votes
2 answers

Are There Agile Processes For Agency Type Work? Scheduling Question

I have just moved to a company where the production team is 15 strong, and consists of a mixture of back end and front end developers, testers & creatives. The team are working on multiple projects at the same time. Its agency work, so projects are…
4
votes
4 answers

How to import existing projects from another folder to workspace in Android studio

I want to import an existing android project into my workspace using Android Studio. I tried by the common method like File->Import project->Selected folder but the problem i am facing that the project is getting imported in to the same existing…
Chandru
  • 5,954
  • 11
  • 45
  • 85
4
votes
1 answer

android - gradle multiproject include and exclude libraries

I am trying to build an Android project with Gradle. It has following structure: ProjectA----- MainProject, LibA ---- Library project, LibB ---- Library project, LibC ---- Library project, LibD ---- Library project, …
user2318724
  • 259
  • 5
  • 16
4
votes
3 answers

Shared Code Between Multiple Asp.Net projects

What's the best practice to share the bin folder and dlls and other resource files (like css) between multiple web applications on the same server? I've already separated out the common code into their own assemblies, but I'm wondering about…
Scott Klarenbach
  • 37,171
  • 15
  • 62
  • 91
4
votes
3 answers

Using JavaFileManager to compile projects

I'm currently creating a system that will allow the user to compile a single or multiple projects. I have been doing a bit of research and have decided to use the JavaCompilerAPI to do this. I have being playing around with it and have managed to…
newSpringer
  • 1,018
  • 10
  • 28
  • 44
3
votes
3 answers

Building multiple android projects via a master ANT build file

I have a master build file that I use to build a series of Android projects. Each of these Android projects reference the same Android library project (I'll call it CoreLibrary). The following is my subant task.
Justin Breitfeller
  • 13,737
  • 4
  • 39
  • 47
3
votes
2 answers

Duplicate Functionality Amongst Multiple Projects

I'm currently working on two social networking sites that have a lot in common, yet are distinctively different. I find myself writing a lot of the same code for both (including UI), and was wondering if there is a best practice that will limit…
Arthur Chaparyan
  • 2,015
  • 6
  • 29
  • 35
3
votes
1 answer

Angular 6 multiples app deployed in firebase hosting

I have a angular 6 app with multiple projects, i configure my rewrite rules to the following: "rewrites": [ { "source": "/ticket/**", "destination": "/ticket-app/index.html" }, { "source": "/client/**", "destination":…
3
votes
2 answers

How can I have one Laravel PHP install with multiple projects?

I noticed that Laravel 5.3 takes about 41MB on average of disk space per project. Is there a tidy way to configure things so that Laravel is installed once on my PHP server (which is dedicated to Laravel-only stuff) and then have multiple projects…
Volomike
  • 23,743
  • 21
  • 113
  • 209
3
votes
1 answer

Connectionstring to other projects' App_Data folder

I have a asp.net webforms project with a database in the App_Data folder referenced by connectionstring:
Morten Holmgaard
  • 7,484
  • 8
  • 63
  • 85
2
votes
4 answers

Eclipse multiple projects to view as one in project explorer

I have downloaded a FOSS source code and built using maven. And then created the eclipse project using mvn eclipse:eclipse. This source has number of modules and now I have multiple eclipse projects when I import them into eclipse. The issue is…
Bee
  • 12,251
  • 11
  • 46
  • 73
1
2
3
9 10