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
0
votes
1 answer

Create nuget package for multiple SDK projects

I have 3 .net standard SDK projects(Utils, Reporting and Testing) that I want to pack them into one nuget package called Shared and upload it in my local package management system to be able to be used in my other projects. I was thinking to use the…
Misi
  • 748
  • 5
  • 21
  • 46
0
votes
1 answer

Setting up Perforce depot for multiple projects

Summary: Want help to figure out how to setup the depot and my development environment so that I can support multiple, related projects. Details: Until now I've had a depot which had in it only one project - ProjectA - robot version A. I am starting…
Harjit
  • 11
  • 1
0
votes
1 answer

How can i make 2 forms in seperate projects access and .Show() each other without circular dependency

LoginInfo Class I have a LoginInfo class which gets and sets the Username of the user logging to track the current user in multiple forms or projects. public class LoginInfo { public static string Username = "NoLoginDetected"; public static…
0
votes
2 answers

In Intellij ,Class files from 2 Different projects (created in different directories) interfere with each other

My Source code: 2 different branches from same repository. Both have 80% same code. Packages also same. But 20% classes are different in both branches. Its because of different features being developed in these branches. My Intellij version is…
Aman Sran
  • 11
  • 2
0
votes
1 answer

Maven Release plugin, version plugins and snapshots

I am trying to automate the release of interdependent projects. Here is the scenario. I have two projects: A and B. Project B has a dependency on project A. Here are the steps that need to happen in the automated procedure: Release project A using…
0
votes
1 answer

GitBash - how to better handle git multi-repos

I have an application that has been split into multiple microservices Despite being a small application where our single team manages all the microservices, all the microservices are held in their own repo instead of a monorepo Ignoring whether this…
CaptainObv
  • 360
  • 1
  • 4
  • 15
0
votes
0 answers

Add multiple projects under one Git repository using Git tools - Submodules

i would like to add multiple projects under a single Git repository using Git tools - submodules. At present i have a Git repository that contains only one project. Now, i need to add another different project also under the same repository such…
Kamal
  • 453
  • 1
  • 10
  • 22
0
votes
0 answers

Add multiple projects into one Git repository

I am new to setting up Git server where i would like to add multiple projects under a single Git repository. At present i have a Git repository that contains only one project which contains "IOS project code" in a single folder . Now, i came across…
Kamal
  • 453
  • 1
  • 10
  • 22
0
votes
2 answers

Cannot setup Git with Subversion repository using git svn

I am trying to use Git with Subversion via git svn with a Subversion repository that has multiple projects in it. The project structure looks like…
Michael Brennan
  • 1,031
  • 8
  • 19
0
votes
0 answers

multiple MFC dialogbased projects

I'm kinda new to programming in general, so please excuse me if it's something obvious. I tried searching but didn't find anything of help to me. Now for the actual problem: For a school-project we are supposed to create a project in mfc with…
0
votes
1 answer

VC++: Using DLLs as "subprograms"

So I just began to try my hand at emulation after years of putting it off and not knowing where to start and I have managed to successfully write my first emulator! Now I am organizing my code in so that I can reuse the code to emulate other…
0
votes
1 answer

Change between two different templatesUrl in Angular 6 component

In Angular 6 we have two different templates .html for each component and we need to change it depending the environment we deploy. We're looking the best practice to do that. Thinking about solutions: - It's not possible to pass a var to the…
0
votes
1 answer

Solution rebuild fails 30% of the time

We have over 100 projects in a Solution and some of the projects include other projects as project references. The Clean-Build/Rebuild took too much time, so I searched and found a pretty good solution for optimizing the build/rebuild time: Setting…
0
votes
1 answer

When click a button run a form from a different project

private void _btnAccept_Click(object sender, EventArgs e) { //UserOntrip _pnl = new UserOntrip(); //_pnl.Show(); //System.Diagnostics.Process.Start(Application.StartupPath.ToString() + @"\_pnlUserOnTrip.exe"); …
0
votes
1 answer

Multiple Logging files (per WSGI project) in Apache under the same VirtualHost

I'm currently running a setup where different projects are served according to URL: http://machine_address/project_nameA http://machine_address/project_nameB (...) Since all projects are served under the same VirtualHost, I ended up having each…
unode
  • 9,321
  • 4
  • 33
  • 44