diff --git a/TorchRemote.Plugin/TorchRemote.Plugin.csproj b/TorchRemote.Plugin/TorchRemote.Plugin.csproj index c076571..c1fa17d 100644 --- a/TorchRemote.Plugin/TorchRemote.Plugin.csproj +++ b/TorchRemote.Plugin/TorchRemote.Plugin.csproj @@ -7,7 +7,6 @@ x64 10 true - $(SolutionDir)TorchBinaries\ @@ -15,64 +14,8 @@ - - $(TorchDir)NLog.dll - False - - - $(TorchDir)DedicatedServer64\Sandbox.Common.dll - False - - - $(TorchDir)DedicatedServer64\Sandbox.Game.dll - False - - - $(TorchDir)DedicatedServer64\Sandbox.Graphics.dll - False - - - $(TorchDir)DedicatedServer64\System.Memory.dll - False - - - $(TorchDir)Torch.dll - False - - - $(TorchDir)Torch.API.dll - False - - - $(TorchDir)Torch.Server.exe - False - - - $(TorchDir)DedicatedServer64\VRage.dll - False - - - $(TorchDir)DedicatedServer64\VRage.Game.dll - False - - - $(TorchDir)DedicatedServer64\VRage.Input.dll - False - - - $(TorchDir)DedicatedServer64\VRage.Library.dll - False - - - $(TorchDir)DedicatedServer64\VRage.Math.dll - False - - - $(TorchDir)DedicatedServer64\VRage.Network.dll - False - @@ -84,8 +27,9 @@ + - + @@ -97,9 +41,4 @@ - - - - - diff --git a/TorchRemote.Plugin/setup.bat b/TorchRemote.Plugin/setup.bat deleted file mode 100644 index ed0572f..0000000 --- a/TorchRemote.Plugin/setup.bat +++ /dev/null @@ -1,20 +0,0 @@ -:: This script creates a symlink to the game binaries to account for different installation directories on different systems. - -@echo off - -set /p path="Please enter the folder location of your Torch.Server.exe: " -cd %~dp0 -rmdir TorchBinaries > nul 2>&1 -mklink /J ..\TorchBinaries "%path%" -if errorlevel 1 goto Error -echo Done! - -echo You can now open the plugin without issue. -goto EndFinal - -:Error -echo An error occured creating the symlink. -goto EndFinal - -:EndFinal -pause