Questions tagged [project-properties]
46 questions
0
votes
0 answers
How to set default Project Properties in NetBeans?
I create projects using C99 in NetBeans. But when I try to include the library math.h, sqrt() and cbrt() won't work. I am on Ubuntu and using Apache NetBeans IDE 11.2. It is updated to NetBeans 8.2 Patch 2.
The steps I do are : File > New Project >…

Alexandre Simard
- 11
- 2
0
votes
0 answers
How to use a 3rd party DLL in a C++ DLL project?
In Visual Studio 2015, how do I properly set up a C++ DLL project that in turn refers to a 3rd party DLL (also implemented in C++)? I cannot add the 3rd party DLL to the references as it seems for a DLL project the "Browse..." option in the "Add…

Sakuragaoka
- 177
- 1
- 8
0
votes
1 answer
Identifying the list of projects that have been invoked in gradle
I have a settings plugin that is multi-project aware. It currently applies itself to every project identified in settings.gradle. However, this is a problem because each subproject doesn't have the same configuration, and I control some plugin…

Vivin Paliath
- 94,126
- 40
- 223
- 295
0
votes
1 answer
Expanding Properties in Gradle Breaks LDAP Config
Summary: I'm trying to access project properties (such as the version) in Java, and everywhere I've read says I need to expand properties in my build.gradle file. That's all fine and dandy, but I'm using LDAP and am configuring it in my properties…

AForsberg
- 1,074
- 2
- 13
- 25
0
votes
0 answers
VS2008: how to reset to Default project properties in Debug and Release mode
How I should reset to default the project properties in VS2008, I mean properties of Debug and Release mode.

Megidd
- 7,089
- 6
- 65
- 142
0
votes
1 answer
Visual Studio 2008: how to save project properties as a property sheet to be used in other projects
I know how to add a property sheet to a VS2008 project. But I don't know how to save the properties of a VS2008 project as a property sheet to be used later in future projects. Does anybody know how? Do I have to manually create a property sheet?

Megidd
- 7,089
- 6
- 65
- 142
0
votes
0 answers
Android - Handling android libraries (jars) in project
We face lot of problems while dealing with libraries in android project.
Problems can be :
Regarding versions of libraries added.
Duplication of libraries in current app and library app.
Sometimes we have to add library in build path sometimes we…

Parmeshwar C
- 979
- 1
- 12
- 22
0
votes
1 answer
eclipse android gitignore for project.properties file
I m collaborating with another developer over git. Our setup environments are different. To avoid adding the correct sdk and other libraries I decided to include this line in .gitignore
#eclipse
project.properties
but in the initial commits my…

Vihaan Verma
- 12,815
- 19
- 97
- 126
0
votes
2 answers
Problems adding a library project (should be added with ..\\ or ../ )
I'm maintaining a project developed from other person on the past, in other machines, mac, linux, etc... Now im programming with Windows 7.
The project consists of two android projects, one of them is a library, and the other should link to that…

NullPointerException
- 36,107
- 79
- 222
- 382
0
votes
1 answer
VisualStudion 2012: Post build Events
In my project I have got following post-build Event:
xcopy "$(TargetDir)Data" "$(ProjectDir)Data" /Y /I
After the run has ended the program copies the files. But if in TargetDir/Data is a complete NEW file, this event does not copy the new file to…

Tagamoga
- 332
- 4
- 18
0
votes
1 answer
error LNK2019: unresolved external symbol, all typical causes ruled out
Every answer (from what I've seen, which is a lot) to this question on this site has been addressed in my case, and I'm still at an impasse. I'm working with legacy code, having to hack my way through setting up a properly connected development…

Ganymede
- 11
- 4
0
votes
1 answer
What would the Native Code Debugger do for me in debugging an ASP.NET Web API project?
In my ASP.NET Web API project's Properties page, Web section, it has several Debuggers that can be enabled at the bottom. Checked by default are ASP.NET and "Enable Edit and Continue." I see there is also a "Native Code" checkbox (as well as SQL…

B. Clay Shannon-B. Crow Raven
- 8,547
- 144
- 472
- 862
0
votes
1 answer
Set "Treat wchar_t as Built-in Type" Visual Studio 2012
Can anyone tell me, please. How can i set "Treat wchar_t as Built-in Type" in Visual Studio 2012. In main documentation i see, that a i have to set like here
Bu in VS2012 in project properties i see only this:
sceenshot
Thanks for yu help!

AntonD
- 108
- 12
0
votes
1 answer
Changing output directory for a dll project
Trying to make the output of a dll project go into desired folders.
i have done this before, i don't understand why it doesn't work.
I have a dll wrapping up a lib. I need the output of the dll to be in $(SolutionDir)\output\x86\$(Configuration)…

Thalia
- 13,637
- 22
- 96
- 190
-1
votes
1 answer
VS2012 "Project is incompatible" message from setting "Windows Store App Support" to true
So I have two problems. The first is that there is some code that has a lot of using statements for things in the Windows namespace like this:
using namespace Windows::System;
using namespace Windows::Storage;
using namespace…

Justin G
- 776
- 1
- 10
- 25