diff --git a/TGInstallerWrapper/FodyWeavers.xml b/TGInstallerWrapper/FodyWeavers.xml
new file mode 100644
index 0000000000..c6e1b7c8af
--- /dev/null
+++ b/TGInstallerWrapper/FodyWeavers.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/TGInstallerWrapper/TGInstallerWrapper.csproj b/TGInstallerWrapper/TGInstallerWrapper.csproj
index e94ed50a6c..9685dbe6d6 100644
--- a/TGInstallerWrapper/TGInstallerWrapper.csproj
+++ b/TGInstallerWrapper/TGInstallerWrapper.csproj
@@ -11,6 +11,8 @@
v4.5.2
512
true
+
+
AnyCPU
@@ -38,6 +40,10 @@
tgs.ico
+
+ ..\packages\Costura.Fody.1.6.2\lib\dotnet\Costura.dll
+ False
+
@@ -70,6 +76,7 @@
+
@@ -78,7 +85,17 @@
+
+
+
+
+ This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.
+
+
+
+
+
\ No newline at end of file
diff --git a/TGInstallerWrapper/packages.config b/TGInstallerWrapper/packages.config
new file mode 100644
index 0000000000..b4d46b584a
--- /dev/null
+++ b/TGInstallerWrapper/packages.config
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/TGS3Release.ps1 b/TGS3Release.ps1
index 0749e410db..ea5884c247 100644
--- a/TGS3Release.ps1
+++ b/TGS3Release.ps1
@@ -2,19 +2,12 @@ $bf = $Env:APPVEYOR_BUILD_FOLDER
$src = "$bf\TGInstallerWrapper\bin\Release"
$version = [System.Diagnostics.FileVersionInfo]::GetVersionInfo("$src\TG Station Server Installer.exe").FileVersion
-Remove-Item "$src\Microsoft.Deployment.WindowsInstaller.xml"
-Remove-Item "$src\TG Station Server Installer.exe.config"
-Remove-Item "$src\TG Station Server Installer.pdb"
-Rename-Item -Path "$src\TG Station Server Installer.exe" -NewName "$src\TG Station Server Installer v$version.exe"
+$destination = "$bf\TGS3-Server-v$version.exe"
-$destination = "$bf\TGS3-Server-v$version.zip"
-
-If(Test-path $destination) {Remove-item $destination}
+Move-Item -Path "$src\TG Station Server Installer.exe" -Destination "$destination"
Add-Type -assembly "system.io.compression.filesystem"
-[io.compression.zipfile]::CreateFromDirectory($src, $destination)
-
$destination_md5sha = $Env:APPVEYOR_BUILD_FOLDER + "\MD5-SHA1-Server-v$version.txt"
$src2 = $Env:APPVEYOR_BUILD_FOLDER + "\ClientApps"
diff --git a/appveyor.yml b/appveyor.yml
index cd29c86075..0bbbd54080 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -5,7 +5,7 @@ image: Visual Studio 2017
configuration: Release
shallow_clone: true
artifacts:
-- path: TGS3-Server-v*.zip
+- path: TGS3-Server-v*.exe
name: TGS3Server
- path: MD5-SHA1-Server-v*.txt
name: MD5SHA1Server