How can we help you today? How can we help you today?

Failed to load assembly. Unable to load runtime config file.

I get this error when I try to open a Blazor WASM project that I have converted from .net 5 to .net 6 in Smart Assembly 8.0.4.4860.

fnils
0

Comments

5 comments

  • Ben_P
    Hi @fnils Blazor and .NET 6 are not yet supported by SA8.
    Ben_P
    0
  • fnils
    Ok, thank you for your reply. Is there a estimate on when it will support .net 6?
    fnils
    0
  • Ben_P
    currently there is no ETA I'm afraid. The dev team hope to start work on this soon but they are currently working through a backlog first before they explore other features.
    Ben_P
    0
  • lindexi
    How to slove?

    Add the Xxxx.runtimeconfig.json file with the content:

    ```
    {
      "runtimeOptions": {
        "tfm": "net6.0",
        "framework": {
          "name": "Microsoft.NETCore.App",
          "version": "6.0.0"
        }
      }
    }
    ```

    And you should replace the Xxxx to your assembly name.

    I test it in SmartAssembly 7.5 with .NET 6 application publish as release
    lindexi
    0
  • rjdunnill
    Ben_P said:
    Hi @fnils Blazor and .NET 6 are not yet supported by SA8. 
    Does Reflector 11.1 support .NET 6.X?
    rjdunnill
    0

Add comment

Please sign in to leave a comment.