From b2616219dd1d1bb233a44979a0d6cb7930856880 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Mon, 20 Apr 2026 09:28:47 +0200 Subject: [PATCH] [docs] Minor updates from copilot review in the dotnet/docs-mobile repository. Ref: https://github.com/dotnet/docs-mobile/pull/110 --- docs/building-apps/build-properties.md | 4 +--- docs/building-apps/build-targets.md | 4 ++-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/building-apps/build-properties.md b/docs/building-apps/build-properties.md index c93f44b6c9b0..4efc424a29ad 100644 --- a/docs/building-apps/build-properties.md +++ b/docs/building-apps/build-properties.md @@ -352,9 +352,7 @@ See [BuildIpa](#buildipa) for iOS and tvOS projects. ## Device -Specifies which mobile device or emulator to target when using `dotnet run ---device ` or MSBuild targets that interact with devices (such as -`Run`, `Install`, or `Uninstall`). +Specifies which mobile device or simulator to target when using `dotnet run --device ` or MSBuild targets that interact with devices (such as `Run`, `Install`, or `Uninstall`). The value can be anything the command-line tools `simctl` or `devicectl` accept for the device name; this is typically either the UDID or the name of diff --git a/docs/building-apps/build-targets.md b/docs/building-apps/build-targets.md index 86a0ff27503a..fbf0abff811e 100644 --- a/docs/building-apps/build-targets.md +++ b/docs/building-apps/build-targets.md @@ -47,8 +47,8 @@ Added in .NET 11. ## Run Builds the source code within a project and all dependencies, and then deploys and runs it -on a default simulator/device. A specific deployment target can be set by using the `$(Device)` property. +on a default simulator/device. A specific deployment target can be set by using the `$(Device)` property. ```dotnetcli -dotnet build -t:Run project.csproj -p:Device=$(MY_DEVICE_UDID) +dotnet build -t:Run project.csproj -p:Device= ```