Andrew
Andrew

Reputation: 173

uno-platform wasm debugging

Still running into wasm debugging. I am on debug and a new project do work but not the project that I stared 8 months ago. I have deleted bin file and obj and user temp files.

<PackageReference Include="Uno.UI.WebAssembly" Version="3.2.0-dev.83" />
<PackageReference Include="Uno.UI.RemoteControl" Version="3.2.0-dev.83" Condition="'$(Configuration)'=='Debug'" />
<PackageReference Include="Uno.Wasm.Bootstrap" Version="1.5.0-dev.57" />
<PackageReference Include="Uno.Wasm.Bootstrap.DevServer" Version="1.5.0-dev.57" PrivateAssets="all" />

enter image description here

Upvotes: 2

Views: 209

Answers (1)

Carl de Billy
Carl de Billy

Reputation: 961

It's probably caused by old packages. Following instructions on this page and there should solve your problem:

  1. Update Uno.UI to latest version
  2. Update Uno.WasmBootstrap & Uno.UI.RemoteControl to latest versions
  3. Add reference to Uno.Wasm.Bootstrap.DevServer
  4. Open your .csproj and remove any <DotNetCliToolReference />

It should work after that.

Upvotes: 1

Related Questions