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.


Comments
5 comments
-
Hi @fnils Blazor and .NET 6 are not yet supported by SA8.
-
Ok, thank you for your reply. Is there a estimate on when it will support .net 6?
-
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.
-
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
-
Ben_P said:Hi @fnils Blazor and .NET 6 are not yet supported by SA8.
Add comment
Please sign in to leave a comment.