Skip to content

Commit b626a6d

Browse files
committed
fix(app-launch): Rename MSBuild task properties for consistent Uno-prefixed naming
1 parent 130d34b commit b626a6d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Uno.Sdk/targets/Uno.AppLaunch.targets

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
Other IDEs will call this target by specifying the `UnoRemoteControlPort` property using the following command:
1818
1919
```shell
20-
dotnet build <app csproj> -c:Debug -t:UnoNotifyAppLaunch -p:TargetFramework=<tfm to launch> -p:NoBuild=true -restore:false -v:d -noLogo -low -p:Ide=<ide info> -p:Plugin=<Uno plugin version> -p:IsDebug=false
20+
dotnet build <app csproj> -c:Debug -t:UnoNotifyAppLaunch -p:TargetFramework=<tfm to launch> -p:NoBuild=true -restore:false -v:d -noLogo -low -p:UnoIde=<ide info> -p:UnoPlugin=<Uno plugin version> -p:UnoIsDebug=false
2121
```
2222
2323
To retrieve the HTTP response content (MVID and target framework info), use -getProperty:
2424
2525
```shell
26-
dotnet build <app csproj> -c:Debug -t:UnoNotifyAppLaunch -getProperty:UnoNotifyAppLaunchHttpResponse -p:TargetFramework=<tfm> -p:NoBuild=true -restore:false -p:Ide=<ide> -p:Plugin=<version> -p:IsDebug=false
26+
dotnet build <app csproj> -c:Debug -t:UnoNotifyAppLaunch -getProperty:UnoNotifyAppLaunchHttpResponse -p:TargetFramework=<tfm> -p:NoBuild=true -restore:false -p:UnoIde=<ide> -p:UnoPlugin=<version> -p:UnoIsDebug=false
2727
```
2828
-->
2929

@@ -53,9 +53,9 @@
5353
<UnoNotifyAppLaunchToDevServer_v0
5454
Port="$(UnoRemoteControlPort)"
5555
TargetPath="$(TargetPath)"
56-
Ide="$(Ide)"
57-
Plugin="$(Plugin)"
58-
IsDebug="$(IsDebug)">
56+
Ide="$(UnoIde)"
57+
Plugin="$(UnoPlugin)"
58+
IsDebug="$(UnoIsDebug)">
5959
<Output TaskParameter="Success" PropertyName="_UnoLaunchSuccess"/>
6060
<Output TaskParameter="ResponseContent" PropertyName="UnoNotifyAppLaunchHttpResponse"/>
6161
</UnoNotifyAppLaunchToDevServer_v0>

0 commit comments

Comments
 (0)