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

Limit access to a Class library in C#.NET

I have a C# class library that is going to be used in 2 different projects. One of them should access to all public classes and methods and the other one should only access to some of the classes and methods . what is the best solution ?
nAviD
  • 2,784
  • 1
  • 33
  • 54
2
votes
1 answer

Apache ivy with Eclipse and multiple projects

How I can use ivy to resolve dependencys between different Eclipse projects? I have one project which has librarys and base classes that I want to use in another project. Like a spring base project and a project which uses spring. In Eclipse there…
Chris S.
  • 323
  • 1
  • 4
  • 13
2
votes
2 answers

C# singleton between projects didn't work

I have 3 projects in a solution like This: Xna Game Project (GAME) with reference to Library Library Project (Library) Windows Form Project (WIN) with reference to Library This project have a multiple project Start up (WIN and GAME). So, in my…
2
votes
1 answer

Unit-test multiple c++ projects and export results to TeamCity

I am introducing unit testing with Google Tests in my c++ projects. The projects are organized in multiple solutions, each solution containing one (main) project and its dependencies. There is also one build solution, containing all projects. Each…
Thalia
  • 13,637
  • 22
  • 96
  • 190
2
votes
4 answers

Maven and Refactoring across Multiple Projects

I'm currently trying to find a suitable workflow to execute refactorings across multiple Maven projects, but I cannot find any satisfying solution. Suppose there are three projects. One project called common and two dependent projects called app1…
1
vote
1 answer

Running multiple Rails projects on Ubuntu

I'm brand new to Rails. I have one Rails project on my machine, but I'd like to create a 2nd project from scratch and I'm having trouble figuring out where and how to set it up. Specifically: My current project is located in the Projects/project1…
VirtuosiMedia
  • 52,016
  • 21
  • 93
  • 140
1
vote
1 answer

Multiple projects, building wrong project first and then breaking on deploy - Visual Studio 2022 - Community

I have two projects. One for my backend (C#), one for my front end (Angular) in my build properties, I have the order with which they need to build set. the ports are set for localhost:7049 for the backend and localhost:4200 for the front…
1
vote
1 answer

Properties Window VS2022

I am new at web programming, I'm trying to create a MPA with TypeScript Angular Template & ASP.NET Core Web API project with VS2022 but I am stuck almost at the very beginning. I am trying to select the launch.json debugger but when I right click…
Manolo77
  • 11
  • 2
1
vote
1 answer

Move Project From Root Solution Folder to Subfolder in Visual Studio

I have a .NET Framework (4.8) C# Class Library project in Visual Studio 2019. The solution is structured as follows: -- Root Folder -- .git -- .vs -- *.cs -- bin -- Project.sln -- Project.csproj I have the solution in a…
1
vote
1 answer

Multiple Visual studio projects (one solution) in gitlab

I am bit new to Git/GitLab. We are moving from Visual Source safe(VSS) to GitLab. We have a Visual studio solutions with multiple projects(20 to 25). It was easy to create repository structure in VSS as individual projects. How does it work with…
1
vote
1 answer

Using Hudson and Maven release plugin to release multiple projects

I have three maven projects. Lets say A, B and C. Each of these projects are multi-module projects that have a flat directory structure. Project C depends on project B. While, project B depends on project A. At the moment, I can successfully do…
systemboot
  • 860
  • 2
  • 8
  • 22
1
vote
0 answers

Using Same browser type from a single file for multiple projects in Selenium C#

I am trying to pass the Browser Type for 45 projects from a single place using Parallel.RunSettings file and adding this file under Test Settings in Visual Studio. But the value is not being read with NullReferenceException. Am I missing any…
Pooja
  • 11
  • 1
1
vote
1 answer

Impact of combining projects in the build path on servlets

I am writing an application in Eclipse, that has a servlet, and an android component. There are common classes to both so, being a bit of noob, I have moved the common classes into a new project to centralise the common code. I then reference the…
angryITguy
  • 9,332
  • 8
  • 54
  • 82
1
vote
1 answer

Compiling Cmake subproject without compiling other subprojects

I have a large project which I have divided into "modules" or "subprojects". The directory structure looks like this (simplified, but the basic idea): project-root/ CMakeLists.txt <-- Contains some variable definitions module1/ …
Eli
  • 693
  • 5
  • 12
1
vote
0 answers

Close a form from another project when a button was clicked

private void _btnAccept_Click(object sender, EventArgs e) { LogInForm.UserOntrip _pnl = new LogInForm.UserOntrip(_FNAME); _pnl.Show(); _btnAccept.Hide(); _btnCancel.Hide(); button1.Show(); string…