Questions tagged [projects]

318 questions
1
vote
1 answer

Can you use Eclipse's .Project files variables for Code Style variables?

I want a way to have my code style do something like this.. this comment is in PHP but the concept should work for any eclipse compatible language. /* * @author ${user} * @version ${version} */ I would want to update the version variable once,…
James Armstead
  • 398
  • 1
  • 4
  • 14
1
vote
4 answers

Beginner Java Applications?

I have learned that the best way to learn a language is by finding a good project to start on, and working out how you would create it. I've been programming for 4 years as a hobby, and it's only been in PHP, so I decided that I should learn a…
John M.
  • 2,234
  • 4
  • 24
  • 36
1
vote
1 answer

C++/C Shareing global variable between 2 projects in Visual Studio

In VS, I have a sln including 2 projects: Project A: A.h #include extern bool flag; A.cpp #include "A.h" bool flag = false; void funcA() { int i = 0; } Project B: B.h #include B.cpp #include "B.h" #include…
yfeng
  • 110
  • 7
1
vote
2 answers

Copy some folders from one TFS project into the other

I have a single TFS server with 2 different team projects - Project 1 and project 2. Project 2 is completely empty. Now, I want to copy some ASP.NET project 1 folders into project 2. How do I do that?
sinds
  • 11
  • 1
  • 2
1
vote
9 answers

Is it necessary to learn Java for contributing to an open source project?

I am more into C/C++. But many of my seniors here in college ask me to learn Java if I want to contribute to an open source project.. I'm in dilemma. what to do? Can't we do a design project in C/C++?
Vaibhav
  • 6,620
  • 11
  • 47
  • 72
1
vote
2 answers

XCode Project Details?

At the top of all the files in a project, it has that comment block with the programmer information and whatnot. How do you change that? I remember setting it once. Somewhere.
Sneakyness
  • 5,305
  • 4
  • 33
  • 39
1
vote
1 answer

Let subproject use external library in iOS

I've a problem managing subprojects in iOS. Here are my projects: PROJECT A, main project - imports B - imports C - uses D PROJECT B, personal subproject - contains D PROJECT C, external lib - contains D LIBRARY D I need to…
Marco Pace
  • 3,820
  • 19
  • 38
1
vote
0 answers

Copying Rally workspace project from one workspace to another

In Rally, I want to copy some of the projects from one workspace to another newly created workspace. Has anyone tried it or has written scripts for it?
1
vote
3 answers

Java - Creating a string by selecting certain numbers from within a text file

I have a .txt file that has numbers 1-31 in it called numbers. I've set up a scanner like this: cardCreator = new Scanner (new File ("numbers")); After this, I'm kind of confused on which methods I could use. I want to set up a conditional…
1
vote
0 answers

Visual Studio 2008 two projects in one solution

I am working in visual studio and i have got two projects in a solution. I want to refer to header file of second project in my main-project. I added second-prj as a reference to my main-prj,. But when i write like #include…
Ashish Negi
  • 5,193
  • 8
  • 51
  • 95
1
vote
2 answers

Multi-project solution in Visual Studio: spread the config of the main project

I have a C++ solution in Visual Studio (2012 Express) containing 15 projects. 1 is defined as the main project (the one that is first built as the whole solution is built). All the 15 projects have 2 same external dependencies. I mean I have to add…
tagoma
  • 3,896
  • 4
  • 38
  • 57
1
vote
1 answer

Microsoft Project Server / Team Foundation Server / Subversion / Wiki on same box

We are in the process of setting up a new development environment for about a dozen developers in our IT department, and I've got a few questions as far as server setup goes.. We're going to be using TFS 2008 for our 6 or so .NET developers, and…
bill
1
vote
1 answer

gradle access another project

I have 2 gradle projects. Lets say projectA and projectB. I need to create a task in projectA, which can execute a task in projectB. I tried with many ways, but i couldn't find a way to do that. Consider following code, //ProjectA build.gradle task…
tiran
  • 2,389
  • 1
  • 16
  • 28
1
vote
0 answers

Is there a Redmine plugin for listing projects and their repositories?

Is there a Redmine plugin for listing projects and their repositories? I have a lot of small projects not regularly used and it can be useful see which repositories they use without having to open the Settings page.
vfclists
  • 19,193
  • 21
  • 73
  • 92
1
vote
2 answers

how to compile a referenced project in eclipse?

So I have two projects in Eclipse and my main project references classes from my second project, the thing is that I am modifying both projects constantly and when I run my main project it does not always build the second project and I need that…
Leonso Medina Lopez
  • 777
  • 1
  • 10
  • 21