Questions tagged [project-settings]

74 questions
0
votes
0 answers

How to build to subfolders within Visual Studio's intermediate directory?

Essentially, the project I'm working with contains many files with the same name, separated only by directories. /src/dir1/file.c /src/dir2/file.c /src/dir3/file.c and so on. I recognize this probably isn't good practice but this isn't my codebase.…
0
votes
1 answer

Custom Role in Azure DevOps to allow Add Users

Is it possible to provide a reduced set of permissions to allow a user permission to add other users to a project without being a full blown administrator? Adding a user as a Project Admin provides to more access which is a huge security issue.
0
votes
1 answer

JavaFX Project - Some imports are not accessible

I have installed JavaFX into eclipse and created a simple project through: File->New->Other-> JavaFX-> JavaFX Project And my project setup is exactly like this: https://www.youtube.com/watch?v=N6cZcw8_XtM And I need to parse some XML files but when…
0
votes
0 answers

Eclipse FAILS to preserve project Configuration settings in CDT

I am working with Neon Eclipse. I have a number of #ifdefs in the project that I am working on, that require Project Settings to set up the Symbols for numerous configuration options, and those configurations will change based on which system I am…
0
votes
1 answer

How can I use subsystem default as empty value in Visual studio 2017

Whenever I create new empty c++ project in Visual studio 2017, the project property Linker > System > Subsystem was Console (/SUBSYSTEM:CONSOLE) . I know i can set its property as empty by my hand but I want to change the default as empty…
sukbu
  • 71
  • 1
  • 3
0
votes
2 answers

Adding an additional include directory for VS10

I'm having some trouble figuring out how to add another directory for a single project. On a regular C/C++ project I'm allowed the option of navigating to the directory, but here I have to enter the directory myself, but this is a CUDA c/C++…
sj755
  • 3,944
  • 14
  • 59
  • 79
0
votes
0 answers

C# Unit Test Project: In post-build event, identifying is it run by unit test project

I'm using Visual Studio 2017, C# Class Library Project. I've bunch of code in my post-build event of this project. This project is referenced by unit test project. I don't want to run the post build event codes in case of running unit test project.…
0
votes
1 answer

How to properly add System Header Search Paths in Xcode

I'm having a problem getting the 'System Header Search Paths' in build settings to work in Xcode and allow me to use #import rather than a local copy and #import "CoreBlocks.h" First I need to "frame" the problem. I have built a…
Cerniuk
  • 14,220
  • 2
  • 29
  • 27
0
votes
0 answers

Delphi Tokyo Version Info migration from dproj

I am migrating a Delphi XE codebase to Delphi 10.2 Tokyo. I cannot get project settings, particularly version info, to migrate correctly. Based on several posts, I tried the following steps: deleting the .dproj file opening the .dpr file…
sse
  • 987
  • 1
  • 11
  • 30
0
votes
1 answer

Azure Webjob publish takes entire bin folder contents

I was trying "Publish as azure webjob" option on a webjob project. It copies entire bin contents to cloud. It includes other unwanted dlls or files also (example: unit test dlls or any other file in the bin folder). How can we include only those…
0
votes
1 answer

Can I set custom developer's name for creating files in Xcode?

When Xcode creates new textual file, it contains such header: // // AppDelegate.swift // application name // // Created by Developer Name on 25.07.17. // Copyright © 2017 company. All rights reserved. // Application name and company values…
General Failure
  • 2,421
  • 4
  • 23
  • 49
0
votes
1 answer

IDEA +tomcat, won't update the changes on javaFile when tomcat was restarted

My question is that recently I have started a web project in IDEA, with some servlet filter. At first it was ok ,but today I've found my idea's hot deploy dosen't work again. For example,when I changed servlet , I need to hit ctrl+shift+F9 to…
0
votes
2 answers

How can i change AndroidStudio project to a lower sdk

I currently run : AndroidStudio 2.2 , Android sdk 24 is also available. Android SDK-Tools 25.2.2 Android Sdk-Platform-tools 24.03 Android sdk-build-tools 24.0.1 When i create a new Blank Project this is the build gradle android { …
Deepak
  • 1,238
  • 3
  • 22
  • 47
0
votes
0 answers

How to add developer-specific code in swift?

I want to add a code which will be executed only for me (not for other developers on project) in swift project. In Objective-c it I can achieve this by adding preprocessor macro DEVELOPER_NAME=${USER} and use it in code like this: #if…
Vladimir
  • 7,670
  • 8
  • 28
  • 42
0
votes
0 answers

How to commit/push (to git) the modified project settings in Visual Studio?

I changed some Project Directories from my project in Visual Studio. How can I push the changes to git and make it applied to others who pulled my update or checked out my branch?
Z Mars
  • 159
  • 1
  • 14