0

What are the possibilities to process Blazor C# compiled code (Wasm) reusing weavers that worked on .NET Standard assemblies (e.g. Fody).

Nimantha
  • 6,405
  • 6
  • 28
  • 69
algorytmus
  • 953
  • 2
  • 9
  • 28

2 Answers2

2

Yes, Fody does support Blazor.

Nimantha
  • 6,405
  • 6
  • 28
  • 69
Simon
  • 33,714
  • 21
  • 133
  • 202
1

... to process Blazor C# compiled code (Wasm)

Blazor does not compile C# to Wasm.

The IL files are deployed to the Browser. So you might be in luck here, if you get the tooling set up.

H H
  • 263,252
  • 30
  • 330
  • 514