export_presets.cfg 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. [preset.0]
  2. name="Windows Desktop"
  3. platform="Windows Desktop"
  4. runnable=true
  5. advanced_options=false
  6. dedicated_server=false
  7. custom_features=""
  8. export_filter="all_resources"
  9. include_filter=""
  10. exclude_filter=""
  11. export_path="../../../Desktop/test_soundthread/SoundThread.exe"
  12. patches=PackedStringArray()
  13. encryption_include_filters=""
  14. encryption_exclude_filters=""
  15. seed=0
  16. encrypt_pck=false
  17. encrypt_directory=false
  18. script_export_mode=2
  19. [preset.0.options]
  20. custom_template/debug=""
  21. custom_template/release=""
  22. debug/export_console_wrapper=0
  23. binary_format/embed_pck=true
  24. texture_format/s3tc_bptc=true
  25. texture_format/etc2_astc=false
  26. binary_format/architecture="x86_64"
  27. codesign/enable=false
  28. codesign/timestamp=true
  29. codesign/timestamp_server_url=""
  30. codesign/digest_algorithm=1
  31. codesign/description=""
  32. codesign/custom_options=PackedStringArray()
  33. application/modify_resources=true
  34. application/icon=""
  35. application/console_wrapper_icon=""
  36. application/icon_interpolation=4
  37. application/file_version=""
  38. application/product_version=""
  39. application/company_name=""
  40. application/product_name="SoundThread"
  41. application/file_description=""
  42. application/copyright=""
  43. application/trademarks=""
  44. application/export_angle=0
  45. application/export_d3d12=0
  46. application/d3d12_agility_sdk_multiarch=true
  47. ssh_remote_deploy/enabled=false
  48. ssh_remote_deploy/host="user@host_ip"
  49. ssh_remote_deploy/port="22"
  50. ssh_remote_deploy/extra_args_ssh=""
  51. ssh_remote_deploy/extra_args_scp=""
  52. ssh_remote_deploy/run_script="Expand-Archive -LiteralPath '{temp_dir}\\{archive_name}' -DestinationPath '{temp_dir}'
  53. $action = New-ScheduledTaskAction -Execute '{temp_dir}\\{exe_name}' -Argument '{cmd_args}'
  54. $trigger = New-ScheduledTaskTrigger -Once -At 00:00
  55. $settings = New-ScheduledTaskSettingsSet -AllowStartIfOnBatteries -DontStopIfGoingOnBatteries
  56. $task = New-ScheduledTask -Action $action -Trigger $trigger -Settings $settings
  57. Register-ScheduledTask godot_remote_debug -InputObject $task -Force:$true
  58. Start-ScheduledTask -TaskName godot_remote_debug
  59. while (Get-ScheduledTask -TaskName godot_remote_debug | ? State -eq running) { Start-Sleep -Milliseconds 100 }
  60. Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue"
  61. ssh_remote_deploy/cleanup_script="Stop-ScheduledTask -TaskName godot_remote_debug -ErrorAction:SilentlyContinue
  62. Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue
  63. Remove-Item -Recurse -Force '{temp_dir}'"