Comments
Sort by recent activity
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
/ comments
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" }...