Questions tagged [multi-project]

319 questions
1
vote
2 answers

Gradle: How to group dependecies in multi-project script?

Our Gradle script consists of root "war" project and multiple (10+) child "jar" projects. Each JAR project depends on many (30-60) JARs. Partial example: dependencies { compile 'dwr:dwr:3.0.0.117' compile 'annotations:annotations:1.0' …
isobretatel
  • 3,812
  • 7
  • 34
  • 49
1
vote
2 answers

How can I notify an application when settings are change through another one

I have two projects A and B. Where project A is a system tray application, and project B is the main application. When the user changes the settings from project B, project A needs to update itself. How can I notify project A with the changes that…
HmH
  • 389
  • 3
  • 14
1
vote
1 answer

Gradle: Who should declare multiproject dependencies: root or subproject

I like to setup a usual multi project build with gradle. The project structure looks like the following: root/ build.gradle settings.gradle share/ build.gradle domain/ build.gradle web/ build.gradle As you might guess, domain…
scheffield
  • 6,618
  • 2
  • 30
  • 31
1
vote
1 answer

Project specific Configuration injection in gradle

I have multi-project build in gradle. Right now I am injecting tasks into each project in the following way Closure clo = {task -> println "Run task"} configure(subprojects.findAll {it.name == 'project1' || it.name == 'project2'}) { task…
The Governor
  • 1,152
  • 1
  • 12
  • 28
1
vote
2 answers

'form' is a type in 'project' and cannot be used as an expression

I have a multi project solution in VB.Net. I have a custom made form, which other forms can inherit. It is in a seperate project called "CustomForm", there are no special graphical effects, it is the same as a generic Windows Form, just handles…
TheRyan722
  • 1,029
  • 13
  • 37
1
vote
4 answers

Visual Studio 2008 - Sharing Data in C++/C# Multi Project Solution

I have a solution with 2 projects: a c++ main project a c# project (display simulator) Today these 2 apps share data using a loopback TCP client/server connection, but that's not very optimal (timing issues..). I was wondering if there was a way…
user213208
1
vote
1 answer

Gradle: Call root-task with recursive execution from subprojects

If i have a gradle multi-project like this RootProject +-- SubProjectA +-- SubProjectB and every project has a task 'foo', i can call it on the root project RootProject>gradle foo and it also gets executed for the…
1
vote
0 answers

Winforms designer - custom controls disabled from referenced project

(using vb 2010) I have a multi-project solution, where ProjectB has a reference to ProjectA. ProjectA has several custom and user controls that I'd like to use in ProjectB. However, when I open up the winforms designer in ProjectB, the ProjectA…
Tekito
  • 840
  • 8
  • 24
0
votes
1 answer

Share Point 2007 Dll Error

I m Trying To Deploy a Solution With 3 Project (Multi Project Solution ) on our sharepoint Server . dll of One Of This Solution In Which I have Put My Enums , Struct and Common Stuff get into trouble after deploy . when i deploy the new solution…
davmszd
  • 91
  • 2
  • 8
0
votes
1 answer

Requestfactory Validation on Multi-Project Setup

I tried changing to the release version of gwt2.4 and run into a problem. I use multiple projects in my setup. I have a project with serverside code, one project with shared code, that can be used in different gwt projects and a gwt project binding…
Arne
  • 1,364
  • 1
  • 11
  • 22
0
votes
1 answer

Excluding plugin apply for certain subprojects in gradle multi-project build

How can I exclude certain subprojects in my multi-project gradle build. I want to exclude a apply plugin call by querying a property of the subproject. The build.gradle of my parent project looks like this: subprojects { if…
paddy3k
  • 149
  • 1
  • 11
0
votes
0 answers

Using a macro to set a using statement in Visual Studio

I am building a template in Visual Studio. The template is made of 3 C# projects. The names of the projects are as follows: name of the solution I create from my template followed by .Project1/.Project2/.Project3. For example, if I call the solution…
0
votes
0 answers

ASP.NET CORE: Turn multi-area single project into multi-project solution?

We have a single ASP.NET Core MVC project, constituted by different features. Each feature is an MVC Area. For example, we have an area for "Personal data", an area for "Communications", an area for "Projects Management" ecc... Each area contains…
0
votes
2 answers

Azure DevOps build Dockerfile while projects have their own repository in Azure DevOps

I'm currently dealing with a problem within my Azure DevOps pipeline where I'm trying to run and build a pipeline for repo 'RepoX', whereafter the Dockerfile tries to use the '.csproj' of repo 'RepoY'. However, 'RepoY' is added as 'existing project…
user20291437
  • 99
  • 1
  • 8
0
votes
0 answers

gitlab runner couldn't download files that uploaded by another project

I have two projects, both configed s3 cache [runners.cache] Type = "s3" Shared = true [runners.cache.s3] ServerAddress = "10.0.211.191:9000" AccessKey = "TWbEUtjH6EQViU67" SecretKey = "****************" BucketName…