X Tutup
Skip to content
This repository was archived by the owner on Jan 4, 2023. It is now read-only.

Commit 14f82f9

Browse files
committed
Fixing build to support TinyCard project.
1 parent 078d7d4 commit 14f82f9

File tree

4 files changed

+14
-0
lines changed

4 files changed

+14
-0
lines changed

.github/workflows/pixel-vision-8-feature-builder.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,4 +140,5 @@ jobs:
140140
Art-Packs-Disk-v${{env.CURRENT}}.pv8:Releases/Final/Disks/ArtPacks.pv8
141141
Demoscene-Disk-v${{env.CURRENT}}.pv8:Releases/Final/Disks/Demoscene.pv8
142142
Example-Games-Disk-v${{env.CURRENT}}.pv8:Releases/Final/Disks/Games.pv8
143+
Tiny-Card-Disk-v${{env.CURRENT}}.pv8:Releases/Final/Disks/TinyCard.pv8
143144
Unity-Runner-v${{env.CURRENT}}.zip:Releases/Final/UnityRunner.zip

Build/Tasks/disks.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,12 @@ gulp.task('release-demoscene-disk', function(){
3131
.pipe(zip("Demoscene.pv8"))
3232
.pipe(gulp.dest(process.env.FINAL + "Disks/"));
3333

34+
})
35+
36+
gulp.task('release-tinycard-disk', function(){
37+
38+
return gulp.src("./Disks/TinyCard/**/*")
39+
.pipe(zip("TinyCard.pv8"))
40+
.pipe(gulp.dest(process.env.FINAL + "Disks/"));
41+
3442
})

Build/Templates/runner-files.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@
103103
"{0}/System.Threading.ThreadPool.dll",
104104
"{0}/System.Transactions.dll",
105105
"{0}/System.Windows.dll",
106+
"{0}/System.Xml.ReaderWriter.dll",
106107
"{0}/System.Xml.XDocument.dll",
107108
"{0}/WindowsBase.dll"
108109
],
@@ -202,6 +203,7 @@
202203
"{0}/System.Threading.ThreadPool.dll",
203204
"{0}/System.Transactions.dll",
204205
"{0}/System.Windows.dll",
206+
"{0}/System.Xml.ReaderWriter.dll",
205207
"{0}/System.Xml.XDocument.dll",
206208
"{0}/WindowsBase.dll",
207209
"{0}/SDL2.dll",
@@ -310,6 +312,7 @@
310312
"{0}/System.Threading.ThreadPool.dll",
311313
"{0}/System.Transactions.dll",
312314
"{0}/System.Windows.dll",
315+
"{0}/System.Xml.ReaderWriter.dll",
313316
"{0}/System.Xml.XDocument.dll",
314317
"{0}/WindowsBase.dll"
315318
],

gulpfile.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@ tasks.push('release-api-examples-disk')
105105
tasks.push('release-art-pack-disk')
106106
tasks.push('release-games-disk')
107107
tasks.push('release-demoscene-disk')
108+
tasks.push('release-tinycard-disk')
109+
108110

109111
// Build unity project
110112
tasks.push('build-unity-project')

0 commit comments

Comments
 (0)
X Tutup