Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(devSrv): Remove usage of the deprecated RemoteControl.config file (backport #19262) #19268

Open
wants to merge 1 commit into
base: release/stable/5.6
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -52,27 +52,11 @@

<Target Name="InjectRemoteControlHost"
BeforeTargets="BeforeBuild"
Condition="exists('$(IntermediateOutputPath)\RemoteControlHost.config') and '$(BuildingInsideVisualStudio)'!='true'">

<ItemGroup>
<WasmShellMonoEnvironment Include="DOTNET_MODIFIABLE_ASSEMBLIES" Value="debug" />
</ItemGroup>

<ReadLinesFromFile File="$(IntermediateOutputPath)\RemoteControlHost.config" >
<Output TaskParameter="Lines" ItemName="_RemoteControlHostContent"/>
</ReadLinesFromFile>

<ItemGroup>
<FileWrites Include="$(IntermediateOutputPath)\RemoteControlHost.config" />
</ItemGroup>

<CreateProperty
Value="@(_RemoteControlHostContent)">
<Output
TaskParameter="Value"
PropertyName="UnoRemoteControlHost" />
</CreateProperty>
Condition="exists('$(IntermediateOutputPath)\RemoteControlHost.config') and '$(BuildingInsideVisualStudio)'!='true' and '$(Configuration)'=='Debug'">

<Warning
Text="The version of uno's extension installed on your IDE is obsolete, please update to the latest version.
If error persists, try to delete obj folder and rebuild your solution." />
</Target>

</Project>
Loading