diff --git a/1.3/Assemblies/RJW_patch_Autopsy.dll b/1.3/Assemblies/RJW_patch_Autopsy.dll index 967872c..901ae12 100644 Binary files a/1.3/Assemblies/RJW_patch_Autopsy.dll and b/1.3/Assemblies/RJW_patch_Autopsy.dll differ diff --git a/1.4/Assemblies/RJW_patch_Autopsy.dll b/1.4/Assemblies/RJW_patch_Autopsy.dll index a1b07b8..1f04054 100644 Binary files a/1.4/Assemblies/RJW_patch_Autopsy.dll and b/1.4/Assemblies/RJW_patch_Autopsy.dll differ diff --git a/1.5/Assemblies/RJW_patch_Autopsy.dll b/1.5/Assemblies/RJW_patch_Autopsy.dll deleted file mode 100644 index f3ee1c4..0000000 Binary files a/1.5/Assemblies/RJW_patch_Autopsy.dll and /dev/null differ diff --git a/About/About.xml b/About/About.xml index f056244..fca2ce6 100644 --- a/About/About.xml +++ b/About/About.xml @@ -6,7 +6,6 @@
  • 1.3
  • 1.4
  • -
  • 1.5
  • Stardust3D.RJW.patch.Autopsy This is a compatibility patch to enable 'Harvest Organs post mortem'/Autopsy to yield RJW bodyparts. diff --git a/Source/RJW_patch_Autopsy/About/About.xml b/Source/RJW_patch_Autopsy/About/About.xml index f056244..fca2ce6 100644 --- a/Source/RJW_patch_Autopsy/About/About.xml +++ b/Source/RJW_patch_Autopsy/About/About.xml @@ -6,7 +6,6 @@
  • 1.3
  • 1.4
  • -
  • 1.5
  • Stardust3D.RJW.patch.Autopsy This is a compatibility patch to enable 'Harvest Organs post mortem'/Autopsy to yield RJW bodyparts. diff --git a/Source/RJW_patch_Autopsy/RJW_patch_Autopsy_1.5.csproj b/Source/RJW_patch_Autopsy/RJW_patch_Autopsy_1.5.csproj index 3dc6a4d..1f53f51 100644 --- a/Source/RJW_patch_Autopsy/RJW_patch_Autopsy_1.5.csproj +++ b/Source/RJW_patch_Autopsy/RJW_patch_Autopsy_1.5.csproj @@ -31,15 +31,15 @@ - + - ..\..\..\RimwoldAutopsy\1.4\Assemblies\Autopsy.dll + ..\..\..\RimwoldAutopsy\1.5\Assemblies\Autopsy.dll - ..\..\..\rjw-beta\1.5\Assemblies\RJW.dll + ..\..\..\rjw-base\1.5\Assemblies\RJW.dll diff --git a/Source/build.gradle.kts b/Source/build.gradle.kts index ac6c2bb..a6a44df 100644 --- a/Source/build.gradle.kts +++ b/Source/build.gradle.kts @@ -105,7 +105,7 @@ tasks.register("sign_1.5") { } tasks.register("copy") { - dependsOn("copy_1.3", "copy_1.4", "copy_1.5", "copy_about") + dependsOn("copy_1.3", "copy_1.4", "copy_about") } tasks.register("copy_about") { @@ -125,12 +125,6 @@ tasks.register("copy_1.4") { into(project.projectDir.parentFile.resolve("1.4")) } -tasks.register("copy_1.5") { - dependsOn("copyDll_1.5") - from(project.projectDir.resolve("${rootProject.name}/1.5")) - into(project.projectDir.parentFile.resolve("1.5")) -} - tasks.register("copyDll_1.3") { dependsOn("sign_1.3") from(project.projectDir.resolve("${rootProject.name}/bin/Release/1.3/net48/${rootProject.name}.dll")) @@ -157,9 +151,6 @@ tasks.register("buildZip") { into("$friendlyName/1.4") { from(project.projectDir.parentFile.resolve("1.4")) } - into("$friendlyName/1.5") { - from(project.projectDir.parentFile.resolve("1.5")) - } into("$friendlyName/About") { from(project.projectDir.parentFile.resolve("About")) } @@ -169,14 +160,12 @@ tasks.register("buildZip") { into("$friendlyName/Source/${rootProject.name}") { from(project.projectDir.parentFile.resolve("Source/${rootProject.name}")) excludes.add("**/obj/**") - excludes.add("**/bin/**") } } tasks.clean { delete.add(project.projectDir.parentFile.resolve("1.3")) delete.add(project.projectDir.parentFile.resolve("1.4")) - delete.add(project.projectDir.parentFile.resolve("1.5")) delete.add(project.projectDir.parentFile.resolve("About")) }