Questions tagged [project]

In software development, a project is a collection of files and resources used in the development of an application or service. Use [ms-project] for Microsoft Project questions.

In software development, a project is a collection of files and resources used in the development of an application or service.

For questions related to Microsoft Project use the tag .

4797 questions
17
votes
1 answer

Where to configure logging?

I'm wondering where to configure and initialize stuff related with logging module? For example I writing some class and I want to log some info while method will be executed. Should I configure logging in init or above class on the top of module: #…
Symonen
  • 628
  • 2
  • 7
  • 19
17
votes
1 answer

Blue arrow overlay on Visual Studio 2012 project files

There are little blue arrows appearing on some of the files in my project in Visual Studio 2012 and I am not sure what they mean. And if I create a new class it does not have the icon on it. Here's a screenshot: https://i.stack.imgur.com/tdZB1.jpg
arazzy
  • 495
  • 1
  • 8
  • 23
17
votes
5 answers

How do you add a C++ project reference in Visual Studio?

In C# it's pretty simple to add a project reference that will build the dependency, put the resulting assembly in the original's Debug/ directory and properly compile against that assembly. So at the moment, I have a project with the Main() and a…
lucidquiet
  • 6,124
  • 7
  • 51
  • 88
17
votes
7 answers

How to import a Java project to Eclipse?

I was trying to export a Java project. I was able to create a JAR file by using the option Export -> Java -> JAR file. I am not able to import this jar file into Eclipse (no import option for java). Am I doing anything wrong here? Using Eclipse Java…
Chillax
  • 4,418
  • 21
  • 56
  • 91
16
votes
1 answer

Change order of files in solution explorer

In Visual Studio, how do you change the order of your source files? By default, it seems that they go in alphabetical order but I want to put them in a more logical order.
Mark Lalor
  • 7,820
  • 18
  • 67
  • 106
16
votes
4 answers

How to use jekyll to write a documentation of a project?

I am writting a documentation for my project. I have done my project in python. But I choose jekyll to write down the documentation. But I didn't found any helpful documentation. There is lots of basic question still moving around me. Such as how to…
user426795
  • 11,073
  • 11
  • 35
  • 35
16
votes
2 answers

How to stop IntelliJ IDEA from expanding the "External Libraries" with "Autoscroll from Source" enabled?

I'm using IntelliJ with Java and the "Always Select Opened File" function enabled. I like when the IDE jumps to the class in the package list, but it will also expand the "External Libraries" making the whole "Project" view pretty messy. Is there a…
user2241239
16
votes
5 answers

Which projects in my solution are using a project reference for a certain project?

In my solution, I have a lot of projects which use project references to other projects in the solution. How do I figure out which projects reference a particular project?
Zack
  • 2,789
  • 33
  • 60
16
votes
9 answers

How does one go about understanding GNU source code?

I'm really sorry if this sounds kinda dumb. I just finished reading K&R and I worked on some of the exercises. This summer, for my project, I'm thinking of re-implementing a linux utility to expand my understanding of C further so I downloaded the…
Max Dwayne
  • 161
  • 1
  • 3
16
votes
4 answers

Java, gulp and maven folder structure

I have a Java web project that uses Maven standard directory layout: java files gets into java (actually: /src/main/java), resources into resources, web content into webapp. Then we wanted to improve our web layer, by adding bower, sass, gulp etc.…
igr
  • 10,199
  • 13
  • 65
  • 111
16
votes
2 answers

Web Application (Django) typical project folder structure

I am very new to web development, just wanted to figure out if there is a recommended(preferred) project folder structure to use (may be even specific to Django based projects). Thank you.
Greg
  • 227
  • 1
  • 2
  • 9
16
votes
5 answers

How to rename XCode5 project that has an attached Pods?

I'm trying to rename an XCode5 project that has an attached CocoaPods (Pods project). (I've attached the CocoaPods using the following tutorial: http://www.raywenderlich.com/12139/introduction-to-cocoapods) I've tried the standard renaming…
thedp
  • 8,350
  • 16
  • 53
  • 95
16
votes
2 answers

Eclipse Kepler - PHP Code completion not working

Today i've downloaded Eclipse Kepler and i've noticed that PHP code completion is not working anymore. when i type the first letters of a standard php function then press CTRL+Space, it gives me an empty list ("No Default Proposal"). This used to…
valepu
  • 3,136
  • 7
  • 36
  • 67
16
votes
6 answers

Should we put classes, enums and other entities to their's own files?

I had a discussion with our's company teamlead\architect on this topic. He argues that it is easier to understand the large-scale project if "entities connected by logic" are placed in one cs-file. I quote: "The whole structure of the logic and…
EngineerSpock
  • 2,575
  • 4
  • 35
  • 57
16
votes
1 answer

How do you exclude a transitive project dependency in gradle

given dependencies { compile project(':subproject') { transitive = false } } This does not work properly in gradle 1.3. (i.e. all dependencies are included from the subproject) Is this a bug or is there a different syntax for…
Mastering_the_Object
  • 1,023
  • 1
  • 7
  • 13