lingarr correction

This commit is contained in:
Tomás Limpinho
2026-04-30 13:03:00 +01:00
parent bdd082160f
commit e200933337
9 changed files with 314 additions and 22 deletions

View File

@ -0,0 +1,24 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: lingarr-configmap
namespace: stack-arr
data:
Lingarr.Server.runtimeconfig.json: |
{
"runtimeOptions": {
"tfm": "net9.0",
"frameworks": [
{ "name": "Microsoft.NETCore.App", "version": "9.0.0" },
{ "name": "Microsoft.AspNetCore.App", "version": "9.0.0" }
],
"configProperties": {
"System.GC.Server": true,
"System.Globalization.Invariant": false,
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
"System.Reflection.NullabilityInfoContext.IsSupported": true,
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false,
"Npgsql.EnableLegacyTimestampBehavior": true
}
}
}