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
2 answers

How to create maven parent-project with war packaging option

i want to create three projects. One of them is parent project and the other two will be modules. On this site http://maven.apache.org/plugins/maven-eclipse-plugin/reactor.html it is explained how to do. It says that the packaging type by parent…
Kayser
  • 6,544
  • 19
  • 53
  • 86
2
votes
1 answer

VS2010 - 2 projects, 1 solution - debug both under 1 instance

What I want to do can't be that unusual. In my solution, I have a MVC3 project and a WebForms project. The MVC3 project is the meat & potatoes of the application- it's what the user will interact with. The 2nd project is going to be a shared…
2
votes
0 answers

vscode debugging fails with multiple Azure Functions in workspace project

I have two Azure function apps in a vscode workspace running properly locally on their own ports (this was made by changing the host start to host start --port 7072 in one of the app's tasks.json file. So far, when running any of the apps in vscode…
einord
  • 2,278
  • 2
  • 20
  • 26
2
votes
2 answers

Host two asp.net core applications on the same Ip and port (localhost:8080 for example)

I have two projects which are ASP.NET CORE servers (1 BackEnd and 1 Identity Server) I would like the BackEnd to serve both apps on the same port and keep two separately runable projects. How can I make this possible ? The purpose is to open only…
Rihen
  • 91
  • 6
2
votes
0 answers

is it possible to add an existing angular project to new angular multiproject workspace?

condider i have project XYZ in angular 6 we get new feature such as https://angular.io/guide/file-structure Workspace and project file structure it allows developer to use multiple projects as libraries or application where it creates sub folder…
naveen
  • 21
  • 2
2
votes
1 answer

How to import scss files from one project into another in Visual Studio

I am having issues sharing scss files between projects in Visual Studio (2019) compiled using Gulp tasks ran by VS' Task Runner. I have one ASP.NET Core (2.2) website which uses MVC areas. Each area is located in a different Razor class library…
Celessor
  • 43
  • 6
2
votes
3 answers

Supporting more than one codebase in ANSI-C

I am working on a project, with an associated Ansi-C code base. (let me call this the 'main' codebase). I now am confronted with a typical problem (stated below), which I believe I would be able to solve much easily if I had an object-oriented…
2
votes
1 answer

Advice: MVC plugins / separate widgets architecture

I am building a project with one main Web Project which acts as the main user experience and several other Web Projects which act as plugins/ widgets to be viewed inside the main website (Often as a part of a larger page on the main website). I am…
Lex Eichner
  • 1,056
  • 3
  • 10
  • 35
2
votes
3 answers

How to restart particular IIS site from Multiple IIS sites?

In our company we have multiple projects in single IIS server and I am working on build automation via using CruisControl. My question is I have to restart a particular IIS site after deployment without entering into server or Via using…
Gaurav C
  • 71
  • 1
  • 1
  • 7
2
votes
1 answer

Workflow to protect against breaking changes in git submodules

We are currently refactoring code to be shared among different projects in our company. This shared code will be included in other projects as a Git submodule. One thing we're worried of is breaking changes introduced to the super project from the…
2
votes
2 answers

gitignore for folder of eclipse projects

I am working following a set of java swing tutorials, each is an Eclipse project, keep them in a workspace. I init a git repository in the workspace folder (mac), and upload to github. When I download this folder in another computer (linux), the…
Pedro Gonzalez
  • 1,429
  • 2
  • 19
  • 30
2
votes
3 answers

how to switch between multiple projects and run them in pycharm?

I am thinking of swiching to pycharm for development. Hence I am experimenting with its functionalists. I have three projects opened (two of them are Django -projects). I am unable to switch the projects for execution. Only one project shows up for…
brain storm
  • 30,124
  • 69
  • 225
  • 393
2
votes
1 answer

Bottle with multiple apps

How do I manage multiple apps in Bottle, served from the one run? App 0 from bottle import Bottle app0 = Bottle() @app0.route('/app0/') def app0_route(): return {'`app0` says': 'Greetings!'} App 1 from bottle import Bottle app1 =…
stackoverflowuser95
  • 1,992
  • 3
  • 20
  • 30
2
votes
1 answer

Whats the best way to set up a VS project that uses mutiple external open source projects?

I have a large project which I am replacing 2 parts of with better open source alternatives. The open source libraries are pretty big but they are stable and unchanging so including the source in my VS project directly seems pointless to me - its…
The ZMan
  • 665
  • 4
  • 8
2
votes
3 answers

Configuring Qt Creator with executable and DLL project

I am new to QT Creator coming from Visual Studio. I have a session with two projects in it. One is a DLL with some classes that I intend to use for other purposes. The other is an executable console app that uses some of the classes from the DLL. I…
narmaps
  • 373
  • 5
  • 16
1 2
3
9 10