Questions tagged [targets]
163 questions
0
votes
0 answers
Not getting auto suggesion while using swift class data into objective class
I have multiple target in my project. I have added productName-Swift.h in my objective c file.I am not getting suggestions in objective class for swift class still I am able to call some method of swift class but some gives error.
Swift Method…
0
votes
1 answer
Multiple DependsOnTargets do not execute
I have a build task that I am working on using msbuild.
Within the task I have several targets, some of which perform preparation work.
When I execute "msbuild myEvent.msbuild /t:event3" the event runs. The first event in the DependsOnTargets…

Daniel Lee
- 674
- 1
- 9
- 25
0
votes
0 answers
MSBuild copy all files to two output locations
I want to copy all build output files to the folder \\server\assemblies using MSBuild, additionally to copying them to the default $(OutDir). I already had a look at the MSBuild target CopyFilesToOutputFolder, but I am unsure of whether I should…

Ehssan
- 739
- 6
- 15
0
votes
1 answer
How to replicate a specific comand line in a XML file with Targets?
So I'm kind of new to the scripting and XMl but I'm trying to get my head arround it.
I'm working on a project where I have to replicate certain commands from scripts to XML using Tasks and Targets and then run it with a MSBuild in TFS 2015.
I have…

1111 1100
- 3
- 2
0
votes
1 answer
Make always rebuilding dependencies
When I use a Makefile without variable targets, things work fine
preamble:
mkdir -p data
touch $@
data/a: preamble
touch $@
data/b: data/a
touch $@
data/c: data/a
touch $@
data/d: data/b data/c
…

NinjaGaiden
- 3,046
- 6
- 28
- 49
0
votes
1 answer
multiple php upload with each file having a different target location
I am trying to create an upload on our site that basically we can add a variety of sized images to the input and they all go to there respective target locations.
Here is the form
0
votes
1 answer
Wrong path in a targets file in VS2013 causing error MSB3030: Could not copy the file
I have openblas.targets file which has the following content:
…

Animesh Pandey
- 5,900
- 13
- 64
- 130
0
votes
1 answer
Stop Xcode from Running Run Script for All Targets
I have two targets in my iPhone application: one for my actual app, and another for my unit testing. I added a run script to my main application's target so that when I compile, the script will generate Doxygen documentation. The problem is that the…

ab217
- 16,900
- 25
- 74
- 92
0
votes
1 answer
Creating Targets in Android Studio like in iOS after mistakenly creating a application rather than library
I was trying to make my already existing app as a base code for my other targets (applications) that i wanted to release. It took me some time in learning the process. I did that and i want to help people by answering it myself. Its straight forward…

Uzair
- 1,529
- 14
- 17
0
votes
1 answer
WPF VS2010 Upgrade - Now WPF designer throws exception when projects targets .NET framework 3.5
I recently upgraded a number of projects from VS2008 to VS2010. Now I'm having an issue at design time w/ the WPF designer in Visual Studio. It throws an exception for every XAML page I open in design mode. Exceptions also throw for new brand new…

Scott Simock
- 67
- 3
- 10
0
votes
1 answer
Xcode, how to submit only some targets to the AppStore?
I've been playing around trying to first add a new target to my app, then make my existing code work. However I need to submit my iPad target to the App Store. I'm not ready to submit the other target.
I've tried creating a branch, but reverting…

Jules
- 7,568
- 14
- 102
- 186
0
votes
1 answer
Referencing App Object Across Multiple Build Targets iOS
I need to make several versions of an iOS application each with a different target and name. Most of the differences between the applications are in the applications resources and not the source code. I am trying to share as much source code across…

Adam Jakiela
- 2,188
- 7
- 30
- 48
0
votes
1 answer
Using multiple and combinable makefile targets
I have a latex project containing at least two options: printable (witch put clickable link on footnote) and monochrome (witch put the wool document on black). This options could be used as single option or, it could be used at the same time (if I…

fauve
- 226
- 1
- 10
0
votes
1 answer
Reusing MSBuild targets for different build types
I have got a problem with reusing the same MSBuild targets for different build types on TFS.
Let me describe the situation.
I have got two build types (CI - for continuous integration and RC - for release candidate). So I have got two build types…

Zbigniew Kawalec
- 182
- 1
- 9
0
votes
2 answers
GNU Makefile - Generic Makefile for several targets
I am currently developing a little C++ package with small code examples for teaching purposes. I managed to write a Makefile like the following that will compile all *.cpp files to *.o files an link them to executables:
CC=gcc
CFLAGS=-g
LDFLAGS=…

Marcel Stüttgen
- 1
- 2