diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 42faae2..87028ad 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -25,7 +25,7 @@ "dependsOn": ["package"], "label": "update test server", "type": "shell", - "args": ["-ExecutionPolicy", "Bypass", "-File", "./load-latest-build.ps1"], + "args": ["-ExecutionPolicy", "Bypass", "-File", "./load_latest_build.ps1"], "options": {"cwd": "${workspaceFolder}/test-server/"}, "command": "powershell", "problemMatcher": [], @@ -35,7 +35,7 @@ "focus": false, "panel": "shared", "showReuseMessage": false, - "clear": true + "clear": false } }, { @@ -43,7 +43,7 @@ "label": "start test server", "type": "shell", "runOptions": {"instanceLimit": 1}, - "args": ["-ExecutionPolicy", "Bypass", "-File", "./start-debug-server-process.ps1"], + "args": ["-ExecutionPolicy", "Bypass", "-File", "./start_process.ps1"], "options": {"cwd": "${workspaceFolder}/test-server/"}, "command": "powershell", "problemMatcher": [], @@ -60,7 +60,7 @@ { "label": "stop test server", "type": "shell", - "args": ["-ExecutionPolicy", "Bypass", "-File", "./end-debug-server-process.ps1"], + "args": ["-ExecutionPolicy", "Bypass", "-File", "./end_process.ps1"], "options": {"cwd": "${workspaceFolder}/test-server/"}, "command": "powershell", "problemMatcher": [], diff --git a/test-server/end-debug-server-process.ps1 b/test-server/end_process.ps1 similarity index 100% rename from test-server/end-debug-server-process.ps1 rename to test-server/end_process.ps1 diff --git a/test-server/load-latest-build.ps1 b/test-server/load_latest_build.ps1 similarity index 100% rename from test-server/load-latest-build.ps1 rename to test-server/load_latest_build.ps1 diff --git a/test-server/start_normal.ps1 b/test-server/start_normal.ps1 new file mode 100644 index 0000000..c29b11f --- /dev/null +++ b/test-server/start_normal.ps1 @@ -0,0 +1 @@ +Start-Process java -ArgumentList "-Xms512M", "-Xmx1G", "-jar", "paper-195.jar", "nogui" \ No newline at end of file diff --git a/test-server/start-debug-server-process.ps1 b/test-server/start_process.ps1 similarity index 100% rename from test-server/start-debug-server-process.ps1 rename to test-server/start_process.ps1