export_presets.cfg 2.3 KB

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