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
27
votes
7 answers

Method to find string inside of the text file. Then getting the following lines up to a certain limit

So this is what I have so far : public String[] findStudentInfo(String studentNumber) { Student student = new Student(); Scanner scanner = new Scanner("Student.txt"); // Find the line that contains…
Joel Sanchez
  • 347
  • 2
  • 5
  • 10
27
votes
2 answers

Xcode 9 folder references with custom project template

In Xcode 9, when you create a group it creates a linked folder in the file system, too. So you don't need to create folder for each group manually. A good explanation about the group and folder related changes in Xcode 9, see this. I have a custom…
balazs630
  • 3,421
  • 29
  • 46
27
votes
3 answers

Adding header and .cpp files in a project built with cmake

I have built a project using cmake and some libraries.I want however to add some header and .cpp files in the project which I am going to code.What is the easiest way to do it?Can I just create a .cpp and header files and then build again project in…
mariosbikos
  • 429
  • 1
  • 5
  • 11
26
votes
3 answers

How to convert QtCreator project to Visual Studio project

I have a QtCreator project file *.pro How to convert it to Visual Studio 2008 project *.sln?
Dmitriy
  • 5,357
  • 8
  • 45
  • 57
25
votes
17 answers

cordova - Error: Failed to fetch platform android

I installed cordova and create a new project. But when I use this command to add android platform: cordova platform add android this error appears: Error: Failed to fetch platform android Probably this is either a connection problem, or platform…
Paili
  • 825
  • 5
  • 18
  • 30
24
votes
3 answers

intellij duplicate entire project and rename it

In Eclipse I simply right click on a project I am working on choose copy and paste with a new name. I have not found an easy way to do this in intellij as it appears that there are configurations all over the project folder that have to be found…
JesseBoyd
  • 1,022
  • 1
  • 13
  • 18
24
votes
7 answers

Visual Studio: Create a web application from existing code

I have an existing directory structure that is all nicely checked into SVN, so I don't really want to mess with it. The website code lives in a folder called C:\Projects\TheProject\Website. I want to bring the website files into a new Web…
cbp
  • 25,252
  • 29
  • 125
  • 205
24
votes
10 answers

Project ...xcodeproj cannot be opened because it is missing its project.pbxproj file

I was trying to merge branches and it resulted in the error "Unable to open project… cannot be opened because the project file cannot be parsed". I then tried to take the advice of other stackoverflow responses (namely to edit the file to remove the…
JeffB6688
  • 3,782
  • 5
  • 38
  • 58
23
votes
3 answers

How do I delete project in intelliJ IDEA 10.5?

I have created a project in IntelliJ IDEA 10.5, but it is very difficult to delete it. The project manager in Eclipse is much better than IntelliJ IDEA. Can anybody explain to me how to do it from IntelliJ IDEA?
itro
  • 7,006
  • 27
  • 78
  • 121
23
votes
7 answers

Import Maven multi-module project into Eclipse

How do I properly import a Maven multi-module project into Eclipse? When I import a new Maven project and select the parent pom, I can see the submodules under the parent pom which are visible in the package explorer and project explorer. However,…
Tuomas Toivonen
  • 21,690
  • 47
  • 129
  • 225
23
votes
4 answers

How to not make install step when building external project with cmake

I'm building dependency project with cmake ExternalProject_Add command: include(ExternalProject) ... set(COMMON_BASE_PROJECT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../CommonBase) ExternalProject_Add(CommonBaseProject SOURCE_DIR…
Vyacheslav
  • 3,134
  • 8
  • 28
  • 42
23
votes
2 answers

Conditional references in .NET project, possible to get rid of warning?

I have two references to a SQLite assembly, one for 32-bit and one for 64-bit, which looks like this (this is a test project to try to get rid of the warning, don't get hung up on the paths):
Lasse V. Karlsen
  • 380,855
  • 102
  • 628
  • 825
23
votes
2 answers

XCode Edit Project Settings vs Edit Active Target

What is the difference between these 2 options under the Project menu drop-down? Normally I just adjusted things in the Project Settings (which adjusts the info.plist, right?). Today I needed to change the name of my project. Initially i changed the…
Edward An
  • 1,727
  • 5
  • 15
  • 16
22
votes
1 answer

How to set PIPENV_VENV_IN_PROJECT on per-project basis

I want pipenv to create its virtualenv in $PROJECTDIR/.venv automatically for everyone who checks out the project. So far, I see only the following options working, none of which is satisfying: Ask users to set PIPENV_VENV_IN_PROJECT=1 globally,…
vog
  • 23,517
  • 11
  • 59
  • 75
22
votes
2 answers

Adding Folder to Xcode Project is not Properly added

Team, I created the new Project, on project folder right click open show in finder there I created "ViewControllers" Folder and again right click Add files to "ProjectName" then I added the created folder i.e., "ViewControllers" which is in blue…
kiran
  • 4,285
  • 7
  • 53
  • 98