Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
2k views

WPF designer won't load when binding datasource from entity framework

EDIT: I have submitted a bug report and Microsoft have acknowledge that it is a bug. There is currently no ETA on when it will be fixed. Bug Report: ...
6
votes
3answers
2k views

How do you handle multiple (overlapping) projects in trac?

We are using trac and are really satisfied with it. However, out of the box, trac is best suited for single-project environments only. I'd be interested to hear about the various approaches people ...
4
votes
1answer
162 views

Gradle: How to configure multiproject setup with side-by-side projects

We have an old project that is set up like this: . ├── customizationProject │   ├── ejb │   └── services ├── projectA │   ├── ejb │   └── shared ├── projectB │   └── ejb └── projectC ├── ejb ...
4
votes
2answers
605 views

Multi-project test dependencies with gradle

I have a multi-project configuration and I want to use gradle. My projects are like this Project A -> src/main/java -> src/test/java Project B -> src/main/java (depends on src/main/java on ...
3
votes
1answer
205 views

How to correctly setup a C language project in Eclipse

I'm an experienced Java developer, and I'm very familiar with Eclipse. Lately I've been trying to migrate a Texas Instrumental(BLE), IAR C language project, into Eclipse, without using IAR official ...
2
votes
2answers
130 views

How to apply fomatter and template settings to multiple projects in Eclipse?

I have various interrelated projects in my Eclipse Helios workspace. Some projects use the Java standard coding style with no license header. Some others use similar coding style with 3-space ...
2
votes
1answer
1k views

How to assemble a multi-project ant build system

At my new gig, they use Ant and cannot be persuaded to move to Maven. I've looked everywhere for a decent example of how a multi-project ant build system should be assembled. The apache site falls ...
1
vote
1answer
196 views

Ivy resolve multi module apache maven POM.xml

If i have multi module project written in maven pom.xml in this architechture pom.xml -main ---module1/pom.xml ---module2/pom.xml and main pom.xml looks like this ...
1
vote
2answers
428 views

Solution/MultiProject Template in VS2010

Looking to make a Solution/Multiproject Template. While I'm aware a solution template does not exist, I've been researching/trying with some of success. (Link from here ...
1
vote
2answers
212 views

C# solution referencing a pre-built .exe

I have a project which is the core of our application. We build several DLLs and an EXE. We then have custom projects which use pre-built core DLLs and EXE and add customisations/extra bits as ...
1
vote
1answer
384 views

Overriding an Ivy dependencies' revision

I use Apache Ivy for handling library dependency. In my company we have a "core" project which is released/versioned periodically. We then have many "customer" projects which are for a particular ...
1
vote
4answers
383 views

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 ...
0
votes
0answers
53 views

What is multi-project support in Project management systems? [closed]

I am researching for my school, I have to find some information about project management systems. And some systems talk about multi-project support. I can't really find out what this just means. Yeah ...
0
votes
1answer
25 views

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

Conditionally exclude project creation in a multi-project Visual Studio project template

I have a multi-project Visual Studio project template. I want to be able to, conditionally, exclude specific projects from the created solution. I've looked into the ProjectFinishedGenerating method ...
0
votes
1answer
194 views

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 ...
0
votes
0answers
149 views

Multiple Projects in an MVC application

I am working on an MVC3 application at the moment. I also have a requirement to create custom membership providers for this appl. What I was hoping to do was create a separate MVC3 solution/project ...
0
votes
1answer
51 views

How I can handle a multi-projects support in Idea in GIT support context?

I have several projects which are under git repositories. All projects have its own GIT-url in the repository. I try to import them to IntelliJ-idea: it works/resolves more or less well but there is ...
0
votes
2answers
54 views

Calling function from a class in project 1 from project 2

I have a c# solution. For the solution i have 2 projects setup. One is a web application and one is a class library. I created a class in the class library that has a static method that i want to ...
0
votes
0answers
46 views

HGE - Access violation when calling hgeSprite.Render

I have a problem when trying to run my game that uses the Haaf's Game engine, this exception is thrown: Unhandled exception at 0x72daad10 (TakaGUI.dll) in Game.exe: 0xC0000005: Access violation ...
0
votes
1answer
102 views

Gradle - when is a plug-in preferable over a script?

I'm using gradle to manage a multi-project J2EE build - the end-goal is to produces a series of server package/artifacts that can be deployed to a target server, unzipped, and run. In other words, ...
0
votes
1answer
127 views

xdebug across projects in netbeans

Here is the situation.. I have some classes that are in one project... My main code is in another project... and i split this up because i am using GIT as my SCM... So when i debug my main code... i ...
0
votes
1answer
213 views

Multi-project solution & cross-application data handling

Time for another "what am I overlooking" question! Thanks in advance for your guidance, and as ever, you guys rock! :) .NET 2010 Winforms, but I only have the Express version. I have 05 Pro, but ...
0
votes
2answers
150 views

Raise custom event in multi-project

it concerns following: I have two projects which should exists more or less independently from each other. Project one is a kind File System Watcher. The other one cosnists of my UI. The file watcher ...
0
votes
6answers
401 views

C# Solution - How many projects?

I googled this a little but couldn't find a good result. Right now I'm building a web site and I'm trying to make it as correct as possible from a design point of view from the beginning. The ...