File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
mod-structure/v1.3/Assemblies Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -135,14 +135,16 @@ function doPostBuild
135
135
$targetDir = " $ ( getProjectDir) \bin\Release"
136
136
$targetPath = " $targetDir \$targetName .dll"
137
137
138
- $gameVersion =
139
-
140
138
$distAssemblyDir = " $distTargetDir \v$ ( getGameVersion) \Assemblies"
141
139
mkdir $distAssemblyDir | Out-Null
142
140
143
141
Copy-Item - Recurse - Force " $PSScriptRoot \mod-structure\*" $distTargetDir
144
142
Copy-Item - Force $targetPath $distAssemblyDir
145
143
144
+ $modStructureAssemblyLocation = " $PSScriptRoot \mod-structure\v$ ( getGameVersion) \Assemblies"
145
+ mkdir $modStructureAssemblyLocation | Out-Null
146
+ Copy-Item - Force $targetPath $modStructureAssemblyLocation
147
+
146
148
Write-Host " Creating distro package"
147
149
$content = Get-Content - Raw $assemblyInfoFile
148
150
if (! ($content -match ' "(\d+\.\d+\.\d+\.\d+)"' ))
You can’t perform that action at this time.
0 commit comments