Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions docs/ios/building-apps/build-properties.md
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,18 @@ This also applies to how native references are stored inside NuGets.
> [!NOTE]
> In some cases it can be beneficial to force a zip file on iOS as well, especially when there's a framework with files that have long names, because the zip file can sometimes work around MAX_PATH issues on Windows.

## CopySceneKitAssetsPath

The full path to the `copySceneKitAssets` tool.

The default behavior is to use `xcrun copySceneKitAssets`.

## CoreMLCompilerPath

The full path to the `coremlc` tool.

The default behavior is to use `xcrun coremlc`.

## CreateAppBundleDependsOn

This is an extension point for the build: a developer can add any targets to
Expand Down Expand Up @@ -1148,6 +1160,18 @@ Example:
$ dotnet run -p:OpenNewInstance=false
```

### OpenWaitForExit

If 'dotnet run' should wait for the app to exit (defaults to `false`).

This will pass `-W` to `open` if set to `true`.

Example:

```shell
$ dotnet run -p:OpenWaitForExit=true
```

### OpenArguments

This property can be used to pass additional arguments to the `open` command.
Expand Down