@warpgogol/forge 2.4.2 → 2.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@warpgogol/forge",
3
- "version": "2.4.2",
3
+ "version": "2.4.3",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -171,6 +171,50 @@ workspace:
171
171
  "geequla.godot-tools"
172
172
  ]
173
173
  }
174
+ - path: .vscode/tasks.json
175
+ content: |
176
+ {
177
+ "version": "2.0.0",
178
+ "tasks": [
179
+ {
180
+ "label": "build",
181
+ "command": "dotnet",
182
+ "type": "process",
183
+ "args": ["build", "${workspaceFolder}/apps/__PROJECT_NAME__/Game.csproj"],
184
+ "problemMatcher": "$mscompile",
185
+ "group": { "kind": "build", "isDefault": true }
186
+ }
187
+ ]
188
+ }
189
+ - path: .vscode/launch.json
190
+ content: |
191
+ {
192
+ "version": "0.2.0",
193
+ "configurations": [
194
+ {
195
+ "name": "Play",
196
+ "type": "coreclr",
197
+ "request": "launch",
198
+ "preLaunchTask": "build",
199
+ "program": "${workspaceFolder}/.godot-bin/godot",
200
+ "args": ["--path", "${workspaceFolder}/apps/__PROJECT_NAME__"],
201
+ "cwd": "${workspaceFolder}",
202
+ "console": "internalConsole",
203
+ "stopAtEntry": false
204
+ },
205
+ {
206
+ "name": "Play (PATH Godot)",
207
+ "type": "coreclr",
208
+ "request": "launch",
209
+ "preLaunchTask": "build",
210
+ "program": "godot",
211
+ "args": ["--path", "${workspaceFolder}/apps/__PROJECT_NAME__"],
212
+ "cwd": "${workspaceFolder}",
213
+ "console": "internalConsole",
214
+ "stopAtEntry": false
215
+ }
216
+ ]
217
+ }
174
218
  - path: .github/workflows/ci.yml
175
219
  content: |
176
220
  name: CI