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

How to debug multiple services in same solution as different users per service?

Core Question Given a solution that has multiple projects (A console app and two services, along with some shared libraries), how can I debug the solution (w/breakpoints in both web services + console) if each service needs to run under it's own…
0
votes
1 answer

Combine single and multiple project repositories using git?

In a larger project that consists of several smaller applications I need to see the changes of the smaller applications on one screen. I searched a while but all I found out is that there is a general discussion on using one large repository against…
Martin Weber
  • 3,892
  • 4
  • 20
  • 23
0
votes
1 answer

Problem in accessing a project from another in same solution in Visual Studio

I have a windows service project which I added to a few other projects. I added the references and I can access them. Then when I build, it says "Does not exist" Then I remove the reference and add it again and I can access it, but still fails when…
Ahmad Farid
  • 14,398
  • 45
  • 96
  • 136
0
votes
1 answer

Console C# app has multiple projects. Several need separate Service References for SOAP calls. Can't get dependencies correct

In simple form, I wrote a console application that (among many other things) makes two SOAP calls to different Web Services. It was a stand-alone solution, so I just put the two WSDL files in as Service References and created wrapper classes to…
0
votes
0 answers

C#: Creating an instance of a class which also runs the class executable and links the two together

I apologise ahead of time because this is hard to explain. I currently have two projects. One called 'Game' and one called 'Client'. Client is also a console application. I am wanting to make it so that I can call an instance of Client in Game,…
gn12345
  • 335
  • 1
  • 3
  • 11
0
votes
1 answer

How to build a svn project that depends on other svn project

I would like to try jenkins for CI of my project ! For building my project, I need 3 others SVN modules (that contains other project). for example, my project architecture look like : - https://scm-svn/myproject/build - build subproject 1 -…
Nymeria
  • 267
  • 4
  • 13
0
votes
1 answer

Linking Issues in a Multiproject Visual Studio 2005 solution

I'm working on a solution file (VS 2005) which contains multiple projects. There are two projects of my concern right now - one called core and another called log. The core project is the startup project and the log project has core ticked in its…
0
votes
1 answer

Linker Input | Add lib to multiple projects

I need t add a .lib input to multiple projects in Visual Studio 2008 (C++). Is there a way to do it fast? I'm going project after project and clicking properties then going to the linker and adding the .lib manually.. Thank you, Matias.
Matias
  • 539
  • 5
  • 28
0
votes
3 answers

Does anybody knows a software that tracks multiple projects and resources?

I am looking something that: Allows me to create projects (with a duration) and assign needed roles for them (I don't care about tasks or a gantt chart in this tool, just a project view) Allows me to create people with one or more roles Set desired…
0
votes
3 answers

Is it possible for two VS2008 C# class library projects to share a single namespace?

I am trying to share a common namespace between two projects in a single solution. The projects are "Blueprint" and "Repositories". Blueprint contains Interfaces for the entire application and serves as a reference for the application structure. …
smartcaveman
  • 41,281
  • 29
  • 127
  • 212
0
votes
1 answer

Git manage/merge remote branches from local host

I am working on a project with other developers and a designer. When it comes to style up the project, I can not work on anything else but wait for designer to finish. What I tried to do, and I am half way there, is: I set up a Vhost for designer,…
George Mylonas
  • 704
  • 6
  • 16
0
votes
0 answers

Debug multiple projects with a time lapse before their respective startups

Preface: I've looked over other posts about multi-project debugging, and I've found recommendations to configure multiple startup projects. Unfortunately, this doesn't fit the bill for my scenario. I'm working on a C# project (VS 2005, Win7 32-bit)…
markoos
  • 125
  • 1
  • 7
0
votes
1 answer

ANT Script to Compile/Build Multiple Projects

I want to Compile 2 projects in my workspace, in which projectB is dependent on projectA. ProjectA |----src |----build.xml ProjectB |----src |----build.xml To Say I'm importing some packages from ProjectB. Now I have 2 Tasks How do I Compile…
0
votes
2 answers

Basic gradle Q for multiple projects

This is a basic gradle question but I could not find an answer: If I have multiple independent projects that share the same root directory, how should I use different build.gradle file for them? for example the directory structure is like…
rdnnz
  • 1
0
votes
1 answer

Joining Multiple Projects in one solution

I have started creating a game, and I added a second project, it's the standard XNA Windows game 3.1 project, and since the other project already had a Main to start the program and the 2nd is for game data, where as the first was for the drawing…
PCAddict
  • 35
  • 5