mirror of
https://gitgud.io/Stardust3D/rjw-plasticsurgeries.git
synced 2024-08-14 23:57:25 +00:00
fixed surgeries not showing up in 1.5
This commit is contained in:
parent
b36cf9de39
commit
bb883f6d6b
19 changed files with 21 additions and 844 deletions
|
@ -115,6 +115,8 @@ tasks.register<Copy>("copy_about") {
|
|||
|
||||
tasks.register<Copy>("copy_1.3") {
|
||||
dependsOn("copyDll_1.3")
|
||||
dependsOn("copyDefs_1.3")
|
||||
|
||||
from(project.projectDir.resolve("${rootProject.name}/1.3")){
|
||||
exclude("**/*.cs")
|
||||
}
|
||||
|
@ -123,6 +125,8 @@ tasks.register<Copy>("copy_1.3") {
|
|||
|
||||
tasks.register<Copy>("copy_1.4") {
|
||||
dependsOn("copyDll_1.4")
|
||||
dependsOn("copyDefs_1.4")
|
||||
|
||||
from(project.projectDir.resolve("${rootProject.name}/1.4")){
|
||||
exclude("**/*.cs")
|
||||
}
|
||||
|
@ -131,6 +135,8 @@ tasks.register<Copy>("copy_1.4") {
|
|||
|
||||
tasks.register<Copy>("copy_1.5") {
|
||||
dependsOn("copyDll_1.5")
|
||||
dependsOn("copyDefs_1.5")
|
||||
|
||||
from(project.projectDir.resolve("${rootProject.name}/1.5")){
|
||||
exclude("**/*.cs")
|
||||
}
|
||||
|
@ -155,6 +161,21 @@ tasks.register<Copy>("copyDll_1.5") {
|
|||
into(project.projectDir.parentFile.resolve("1.5/Assemblies"))
|
||||
}
|
||||
|
||||
tasks.register<Copy>("copyDefs_1.3") {
|
||||
from(project.projectDir.resolve("${rootProject.name}/Defs"))
|
||||
into(project.projectDir.parentFile.resolve("1.3/Defs"))
|
||||
}
|
||||
|
||||
tasks.register<Copy>("copyDefs_1.4") {
|
||||
from(project.projectDir.resolve("${rootProject.name}/Defs"))
|
||||
into(project.projectDir.parentFile.resolve("1.4/Defs"))
|
||||
}
|
||||
|
||||
tasks.register<Copy>("copyDefs_1.5") {
|
||||
from(project.projectDir.resolve("${rootProject.name}/Defs"))
|
||||
into(project.projectDir.parentFile.resolve("1.5/Defs"))
|
||||
}
|
||||
|
||||
tasks.register<Zip>("buildZip") {
|
||||
dependsOn("clean", ":copy")
|
||||
into("$friendlyName/1.3") {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue