Commit b3821b1
authored
Fix export builds (#486)
* Fix linux debug builds
Amusingly enough godot doesn't actually build the C# project when
exporting the build - we have to do that ourselves.
This required making all the `.csproj` files have the same .net target
version and then just adding the `dotnet build` command. This will also
probably fix the other platforms, but I can only easily test linux.
This also explains why I didn't encounter the issue when running locally
- my command when running locally is `dotnet build && godot
--rendering-driver opengl3 # run game`, so I'm always rebuilding.
* Add the build command to the other platforms1 parent 18d9116 commit b3821b1
File tree
2 files changed
+4
-1
lines changed- .github/workflows
- _Console/BuildDevSave
2 files changed
+4
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
| 40 | + | |
40 | 41 | | |
41 | 42 | | |
42 | 43 | | |
| |||
66 | 67 | | |
67 | 68 | | |
68 | 69 | | |
| 70 | + | |
69 | 71 | | |
70 | 72 | | |
71 | 73 | | |
| |||
98 | 100 | | |
99 | 101 | | |
100 | 102 | | |
| 103 | + | |
101 | 104 | | |
102 | 105 | | |
103 | 106 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
| 10 | + | |
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
0 commit comments