summaryrefslogtreecommitdiff
path: root/src/SMAPI.Installer/assets/runtimeconfig.json
blob: bd6a5240fec8e8686ed3af9379aea6bb57635c19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
    "runtimeOptions": {
        "tfm": "net5.0",
        "includedFrameworks": [
            {
                "name": "Microsoft.NETCore.App",
                "version": "5.0.0",
                "rollForward": "latestMinor"
            }
        ],
        "configProperties": {
            // disable tiered runtime JIT: https://github.com/dotnet/runtime/blob/main/docs/design/features/tiered-compilation.md
            // This is disabled by the base game, and causes issues with Harmony patches.
            "System.Runtime.TieredCompilation": false
        }
    }
}