Questions tagged [project-properties]

46 questions
10
votes
7 answers

No compatible targets were found

I am having target android-4 in project.properties. In eclipse when I run the project I am getting the error No compatible targets were found How to resolve this>
Achaius
  • 5,904
  • 21
  • 65
  • 122
9
votes
2 answers

Visual Studio: How to use platform toolset as preprocessor directive?

I have two platform toolsets: v110 and v110_xp for my project, and depending on the chosen platform I want to include/exclude part of the code to be compiled. _MSC_FULL_VER and $(PlatformToolsetVersion) have exactly the same value for both of these…
8
votes
1 answer

NetBeans doesn't recognize ${project.organization} in license template

Can anybody reproduce the following? In my NetBeans 7.2 project I've set the "project.license" property (in project.properties) to "apache20" so that NetBeans generates the appropriate license text in every new .java file. The license text (which is…
Rinke
  • 6,095
  • 4
  • 38
  • 55
7
votes
2 answers

The "Build" tab missing from project properties in Visual Studio 2013

When I open any C# Win-Forms or WPF project in Visual Studio 2013, the "Build" tab doesn't show up. It is visible if I open the project in VS2010. I haven't been able to find any information about this specific tab disappearing. I've have tried…
Nathen Silver
  • 439
  • 4
  • 7
6
votes
3 answers

Visual Studio 2013 and Qt5: QTDIR set too late

Everything works with Qt in MSVC2013, except one thing: the DLLs are not found, because $(QTDIR) is not defined, when the local debugging environment is set. My debugging environment settings: PATH=$(QTDIR)\bin%3b$(PATH) My .user file:
user2368140
5
votes
2 answers

VS2010 will not display project properties ("underlying RCW")?

Only sometimes (I haven't yet noticed a pattern), VS2010 shows the following error (where I'd expect the body of the property page to be) when I right-click on a project (various types of projects) and select "Properties": I can typically view the…
lance
  • 16,092
  • 19
  • 77
  • 136
4
votes
1 answer

Does Visual Studio support directing build output to multiple directories?

Every time I do a build using Visual Studio 2008, I have to manually copy the output files to two additional directories on my computer. Is there a way to configure my projects, so that when the output files are generated copies of them are…
Jim Fell
  • 13,750
  • 36
  • 127
  • 202
4
votes
1 answer

How to get rid of additional folder named "netstandardxx" in .NET standard class library project output path in VS2017?

I created a project in VS2017 using .NET Standard Class Library Project Template. The problem is when I wanted to change the project output path to some arbitrary folder, it appends to my selected path, another folder named "netstandardxx" (in which…
4
votes
0 answers

Where does Visual Studio store the Debug Start Action Start External Program

In Visual Studio, when you go to the Project Properties, Click Debug, and set the Start Action "Start external program", where does Visual Studio save that setting? as far as I can tell, it does not store it in the csproj file as I would expect.…
4
votes
1 answer

Set the project properties in subclassed gradle task

I am defining a gradle task "launchIPad2Simulator" that is subclassing another already defined task "launchIPadSimulatorfrom" in robovm gradle plugin. The goal is to set the project properties which are defining which simulator will run. // Run the…
RenatoIvancic
  • 1,798
  • 3
  • 21
  • 36
4
votes
7 answers

How can I choose the "Startup object" in project properties while the listbox is empty?

I have a WPF project which I try to make it a single instance app using the recipe with Microsoft.VisualBasic dll described by Dale Ragan here at StackOverflow Doing so in Visual Studio 2013 with Framework 4.5 give me 2x the same error while…
Eric Ouellet
  • 10,996
  • 11
  • 84
  • 119
3
votes
2 answers

Setting OutDir and IntDir for all projects

I am trying to setup a default location for OutDir and IntDir to be used by all projects in the solution. Such as: $(SolutionDir)bld\$(Platform)\$(ProjectName)\$(Configuration)\ When I set this in the Directory.Build.props file,…
Thomas Oatman
  • 301
  • 2
  • 9
3
votes
1 answer

How do you generate new PDB files every build in Visual Studio 2013?

Problem: A developer would like to create new Program Database Files (PDB) every time a build has started. For what scenario: C++ hot-swapping, debugging on the fly, DLL code plugins for the main program to execute code.
3
votes
2 answers

android: Project.Properties - do not edit, your changes will be erased?

I seem to have an issue. I wanted to add some additional config info into project.properties in an android project but i notice when i open it there are comments telling me not to edit it Is it safe to edit Would it get regenerated at some point so…
Martin
  • 23,844
  • 55
  • 201
  • 327
2
votes
0 answers

How to access Project Properties from NetBeans Plugin?

I am developing a NetBeans Plugin which should be able to change the encoding of a NetBeans Project. In my plugin I have a reference to an instance of org.netbeans.api.project.Project but I still don't know how I can read the "Encoding" property of…
Benny Code
  • 51,456
  • 28
  • 233
  • 198
1
2 3