Description:
Add VS Code tasks.
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
@@ -0,0 +1,20 | |||
|
1 | { | |
|
2 | "version": "0.2.0", | |
|
3 | "configurations": [ | |
|
4 | { | |
|
5 | "name": "Attach to Core Debugger", | |
|
6 | "type": "coreclr", | |
|
7 | "request": "launch", | |
|
8 | "preLaunchTask": "Build: Core Debug", | |
|
9 | "program": "${workspaceFolder}/isometric-park-fna/bin/Debug/netcoreapp3.1/isometric-park-fna.dll", | |
|
10 | "args": [], | |
|
11 | "env": { | |
|
12 | "LD_LIBRARY_PATH": "${workspaceFolder}/isometric-park-fna/bin/Debug/netcoreapp3.1/lib64", | |
|
13 | "DYLD_LIBRARY_PATH": "${workspaceFolder}/isometric-park-fna/bin/Debug/netcoreapp3.1/osx" | |
|
14 | }, | |
|
15 | "cwd": "${workspaceFolder}", | |
|
16 | "console": "integratedTerminal", | |
|
17 | "internalConsoleOptions": "neverOpen" | |
|
18 | } | |
|
19 | ] | |
|
20 | } |
@@ -0,0 +1,224 | |||
|
1 | { | |
|
2 | "version": "2.0.0", | |
|
3 | "options": { | |
|
4 | "cwd": "${workspaceRoot}" | |
|
5 | }, | |
|
6 | "windows": { | |
|
7 | "options": { | |
|
8 | "shell": { | |
|
9 | "executable": "cmd.exe", | |
|
10 | "args": [ | |
|
11 | "/d", | |
|
12 | "/c" | |
|
13 | ] | |
|
14 | } | |
|
15 | } | |
|
16 | }, | |
|
17 | "presentation": { | |
|
18 | "reveal": "always", | |
|
19 | "focus": true, | |
|
20 | "panel": "shared" | |
|
21 | }, | |
|
22 | "tasks": [ | |
|
23 | { | |
|
24 | "label": "Build: Framework Release", | |
|
25 | "command": "msbuild", | |
|
26 | "args": [ | |
|
27 | "-restore:True", | |
|
28 | "${workspaceFolder}/isometric-park-fna.sln", | |
|
29 | "-p:Configuration=Release" | |
|
30 | ], | |
|
31 | "type": "shell", | |
|
32 | "group": { | |
|
33 | "kind": "build", | |
|
34 | "isDefault": true | |
|
35 | }, | |
|
36 | "problemMatcher": "$msCompile" | |
|
37 | }, | |
|
38 | { | |
|
39 | "label": "Run: Framework Release", | |
|
40 | "command": "mono", | |
|
41 | "args": [ | |
|
42 | "isometric-park-fna.exe" | |
|
43 | ], | |
|
44 | "options": { | |
|
45 | "env": { | |
|
46 | "LD_LIBRARY_PATH": "./lib64", | |
|
47 | "DYLD_LIBRARY_PATH": "/Users/alys/repos/isometric-park-fna/fnalibs/osx:/Users/alys/repos/isometric-park-fna/cimgui/osx-x64s" | |
|
48 | }, | |
|
49 | "cwd": "${workspaceFolder}/isometric-park-fna/bin/Release/" | |
|
50 | }, | |
|
51 | "type": "process", | |
|
52 | "group": { | |
|
53 | "kind": "build", | |
|
54 | "isDefault": true | |
|
55 | }, | |
|
56 | "problemMatcher": [] | |
|
57 | }, | |
|
58 | { | |
|
59 | "label": "Build & Run: Framework Release", | |
|
60 | "dependsOn": [ | |
|
61 | "Build: Framework Release", | |
|
62 | "Run: Framework Release" | |
|
63 | ], | |
|
64 | "dependsOrder": "sequence", | |
|
65 | "type": "shell", | |
|
66 | "group": { | |
|
67 | "kind": "build", | |
|
68 | "isDefault": true | |
|
69 | }, | |
|
70 | "problemMatcher": [] | |
|
71 | }, | |
|
72 | { | |
|
73 | "label": "Build: Framework Debug", | |
|
74 | "command": "msbuild", | |
|
75 | "args": [ | |
|
76 | "-restore:True", | |
|
77 | "${workspaceFolder}/isometric-park-fna.sln", | |
|
78 | "-p:Configuration=Debug" | |
|
79 | ], | |
|
80 | "type": "shell", | |
|
81 | "group": { | |
|
82 | "kind": "build", | |
|
83 | "isDefault": true | |
|
84 | }, | |
|
85 | "problemMatcher": [] | |
|
86 | }, | |
|
87 | { | |
|
88 | "label": "Run: Framework Debug", | |
|
89 | "command": "mono", | |
|
90 | "args": [ | |
|
91 | "isometric-park-fna.exe" | |
|
92 | ], | |
|
93 | "options": { | |
|
94 | "env": { | |
|
95 | "LD_LIBRARY_PATH": "./lib64", | |
|
96 | "DYLD_LIBRARY_PATH": "/Users/alys/repos/isometric-park-fna/fnalibs/osx:/Users/alys/repos/isometric-park-fna/cimgui/osx-x64" | |
|
97 | }, | |
|
98 | "cwd": "${workspaceFolder}/isometric-park-fna/bin/Debug" | |
|
99 | }, | |
|
100 | "type": "process", | |
|
101 | "group": { | |
|
102 | "kind": "build", | |
|
103 | "isDefault": true | |
|
104 | }, | |
|
105 | "problemMatcher": [] | |
|
106 | }, | |
|
107 | { | |
|
108 | "label": "Build & Run: Framework Debug", | |
|
109 | "dependsOn": [ | |
|
110 | "Build: Framework Debug", | |
|
111 | "Run: Framework Debug" | |
|
112 | ], | |
|
113 | "dependsOrder": "sequence", | |
|
114 | "type": "shell", | |
|
115 | "group": { | |
|
116 | "kind": "build", | |
|
117 | "isDefault": true | |
|
118 | }, | |
|
119 | "problemMatcher": [] | |
|
120 | }, | |
|
121 | { | |
|
122 | "label": "Build & Run: Core Debug", | |
|
123 | "type": "shell", | |
|
124 | "dependsOrder": "sequence", | |
|
125 | "dependsOn": [ | |
|
126 | "Build: Core Debug", | |
|
127 | "Run: Core Debug" | |
|
128 | ], | |
|
129 | "group": { | |
|
130 | "kind": "build", | |
|
131 | "isDefault": true | |
|
132 | }, | |
|
133 | "problemMatcher": [] | |
|
134 | }, | |
|
135 | { | |
|
136 | "label": "Build: Core Debug", | |
|
137 | "command": "dotnet", | |
|
138 | "args": [ | |
|
139 | "build", | |
|
140 | "./isometric-park-fna.Core.sln", | |
|
141 | "-f", | |
|
142 | "netcoreapp3.1" | |
|
143 | ], | |
|
144 | "type": "shell", | |
|
145 | "group": { | |
|
146 | "kind": "build", | |
|
147 | "isDefault": true | |
|
148 | }, | |
|
149 | "problemMatcher": [] | |
|
150 | }, | |
|
151 | { | |
|
152 | "label": "Run: Core Debug", | |
|
153 | "command": "dotnet", | |
|
154 | "args": [ | |
|
155 | "./isometric-park-fna.dll" | |
|
156 | ], | |
|
157 | "options": { | |
|
158 | "env": { | |
|
159 | "LD_LIBRARY_PATH": "./lib64", | |
|
160 | "DYLD_LIBRARY_PATH": "/Users/alys/repos/isometric-park-fna/fnalibs/osx:/Users/alys/repos/isometric-park-fna/cimgui/osx-x64" | |
|
161 | }, | |
|
162 | "cwd": "${workspaceFolder}/isometric-park-fna/bin/Debug/netcoreapp3.1" | |
|
163 | }, | |
|
164 | "type": "process", | |
|
165 | "group": { | |
|
166 | "kind": "build", | |
|
167 | "isDefault": true | |
|
168 | }, | |
|
169 | "problemMatcher": [] | |
|
170 | }, | |
|
171 | { | |
|
172 | "label": "Build: Core Release", | |
|
173 | "command": "dotnet", | |
|
174 | "args": [ | |
|
175 | "build", | |
|
176 | "./isometric-park-fna.Core.sln", | |
|
177 | "--configuration", | |
|
178 | "Release", | |
|
179 | "-f", | |
|
180 | "netcoreapp3.1" | |
|
181 | ], | |
|
182 | "type": "shell", | |
|
183 | "group": { | |
|
184 | "kind": "build", | |
|
185 | "isDefault": true | |
|
186 | }, | |
|
187 | "problemMatcher": [] | |
|
188 | }, | |
|
189 | { | |
|
190 | "label": "Run: Core Release", | |
|
191 | "command": "dotnet", | |
|
192 | "args": [ | |
|
193 | "./isometric-park-fna.dll" | |
|
194 | ], | |
|
195 | "options": { | |
|
196 | "env": { | |
|
197 | "LD_LIBRARY_PATH": "./lib64", | |
|
198 | "DYLD_LIBRARY_PATH": "/Users/alys/repos/isometric-park-fna/fnalibs/osx:/Users/alys/repos/isometric-park-fna/cimgui/osx-x64" | |
|
199 | }, | |
|
200 | "cwd": "${workspaceFolder}/isometric-park-fna/bin/Release/netcoreapp3.1" | |
|
201 | }, | |
|
202 | "type": "process", | |
|
203 | "group": { | |
|
204 | "kind": "build", | |
|
205 | "isDefault": true | |
|
206 | }, | |
|
207 | "problemMatcher": [] | |
|
208 | }, | |
|
209 | { | |
|
210 | "label": "Build & Run: Core Release", | |
|
211 | "dependsOrder": "sequence", | |
|
212 | "dependsOn": [ | |
|
213 | "Build: Core Release", | |
|
214 | "Run: Core Release" | |
|
215 | ], | |
|
216 | "type": "shell", | |
|
217 | "group": { | |
|
218 | "kind": "build", | |
|
219 | "isDefault": true | |
|
220 | }, | |
|
221 | "problemMatcher": [] | |
|
222 | } | |
|
223 | ] | |
|
224 | } |
|
1 | NO CONTENT: modified file, binary diff hidden |
@@ -1,9 +1,14 | |||
|
1 | 1 | |
|
2 | 2 | Gameplay: |
|
3 | 3 | Money: |
|
4 | - Add basic subsidy @milestone(1: Basic Money) | |
|
5 | - Balance sheet @milestone(1: Basic Money) | |
|
6 | - | |
|
4 | - Add basic subsidy @milestone(1: Basic Money) @done(2021-01-27) | |
|
5 | - Balance sheet | |
|
6 | - Basic balance sheet @milestone(1: Basic Money) | |
|
7 | - Basic display @done(2021-01-27) | |
|
8 | - Movement @done(2021-01-27) | |
|
9 | - Close button @done(2021-01-28) | |
|
10 | - Better appearance | |
|
11 | - Money graph @maybe | |
|
7 | 12 | Logging: |
|
8 | 13 | - Add contract struct @milestone(3: Contracts) |
|
9 | 14 | - Add tree simulation @milestone(3: Contracts) |
@@ -15,7 +20,16 | |||
|
15 | 20 | - Add basic age simulation |
|
16 | 21 | - Biodiversity @maybe |
|
17 | 22 | - Research agreements @maybe |
|
18 | - | |
|
23 | - Forest rangers allocatable as law enforcement? @maybe | |
|
24 | Have to think about thematic implications | |
|
25 | Staff: | |
|
26 | - Ranger staffing? @maybe @milestone(1: Basic Money) | |
|
27 | - Staffing window | |
|
28 | - Ranger allocation | |
|
29 | - Set employee salaries, leave, etc. @maybe | |
|
30 | - Figure out roles: ranger, educator, researcher? | |
|
31 | Don't want to be too derivative | |
|
32 | - Employee trainiing mechanic @maybe | |
|
19 | 33 | Leisure: |
|
20 | 34 | - Add way to mark off area for leisure @milestone(4: Leisure) |
|
21 | 35 | - Basic satisfaction @milestone(4: Leisure) |
@@ -41,7 +55,7 | |||
|
41 | 55 | Misc: |
|
42 | 56 | - Assistant commentary @milestone(5: Events) |
|
43 | 57 | Need to ensure it's not annoying |
|
44 | Basic random events | |
|
58 | Basic random events @milestone(5: Events) | |
|
45 | 59 | - Tree planting campaign |
|
46 | 60 | - Fire |
|
47 | 61 | - Friends of the park fundraiser |
You need to be logged in to leave comments.
Login now