api_asp.net.runtimeconfig.json 503 B

123456789101112131415161718192021
  1. {
  2. "runtimeOptions": {
  3. "tfm": "net8.0",
  4. "frameworks": [
  5. {
  6. "name": "Microsoft.NETCore.App",
  7. "version": "8.0.0"
  8. },
  9. {
  10. "name": "Microsoft.AspNetCore.App",
  11. "version": "8.0.0"
  12. }
  13. ],
  14. "configProperties": {
  15. "System.GC.Server": true,
  16. "System.Globalization.Invariant": true,
  17. "System.Globalization.PredefinedCulturesOnly": true,
  18. "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
  19. }
  20. }
  21. }