Version: 2017.4
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

PBXProject.UpdateBuildProperty

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public method UpdateBuildProperty(targetGuid: string, name: string, addValues: IEnumerable<string>, removeValues: IEnumerable<string>): void;
public void UpdateBuildProperty(string targetGuid, string name, IEnumerable<string> addValues, IEnumerable<string> removeValues);
public method UpdateBuildProperty(targetGuids: IEnumerable<string>, name: string, addValues: IEnumerable<string>, removeValues: IEnumerable<string>): void;
public void UpdateBuildProperty(IEnumerable<string> targetGuids, string name, IEnumerable<string> addValues, IEnumerable<string> removeValues);

Parameters

targetGuidThe target GUID as returned by NativeTargetByName.
targetGuidsAn array of target GUIDs.
nameThe name of the build property.
addValuesThe values to add to the build property.
removeValuesThe values to remove from the build property.

Description

Adds and removes values from build property in all build configurations for the specified target(s).