diff --git a/TShockAPI/TShockAPI.csproj b/TShockAPI/TShockAPI.csproj index 8302e0eb..ff3d0b9e 100644 --- a/TShockAPI/TShockAPI.csproj +++ b/TShockAPI/TShockAPI.csproj @@ -54,21 +54,21 @@ - ..\HttpBins\HttpServer.dll + ..\prebuilts\HttpServer.dll - ..\SqlBins\Mono.Data.Sqlite.dll + ..\prebuilts\Mono.Data.Sqlite.dll False - ..\SqlBins\MySql.Data.dll + ..\prebuilts\MySql.Data.dll True - .\Newtonsoft.Json.dll + ..\prebuilts\Newtonsoft.Json.dll - ..\BCryptBins\BCrypt.Net.dll + ..\prebuilts\BCrypt.Net.dll diff --git a/create_release.py b/create_release.py index 8002ef4c..8e2bd256 100644 --- a/create_release.py +++ b/create_release.py @@ -21,10 +21,10 @@ bcrypt_bin_name = "BCrypt.Net.dll" terraria_release_bin = os.path.join(cur_wd, "TerrariaServerAPI", "bin", "Release", terraria_bin_name) terraria_debug_bin = os.path.join(cur_wd, "TerrariaServerAPI", "bin", "Debug", terraria_bin_name) -sql_dep = os.path.join(cur_wd, "SqlBins") -http_bin = os.path.join(cur_wd, "HttpBins", http_bin_name) -json_bin = os.path.join(cur_wd, "TShockAPI", json_bin_name) -bcrypt_bin = os.path.join(cur_wd, "BCryptBins", bcrypt_bin_name) +sql_dep = os.path.join(cur_wd, "prebuilts") +http_bin = os.path.join(cur_wd, "prebuilts", http_bin_name) +json_bin = os.path.join(cur_wd, "prebuilts", json_bin_name) +bcrypt_bin = os.path.join(cur_wd, "prebuilts", bcrypt_bin_name) release_bin = os.path.join(cur_wd, "TShockAPI", "bin", "Release", tshock_bin_name) debug_folder = os.path.join(cur_wd, "TShockAPI", "bin", "Debug") diff --git a/BCryptBins/BCrypt.Net.XML b/prebuilts/BCrypt.Net.XML similarity index 100% rename from BCryptBins/BCrypt.Net.XML rename to prebuilts/BCrypt.Net.XML diff --git a/BCryptBins/BCrypt.Net.dll b/prebuilts/BCrypt.Net.dll similarity index 100% rename from BCryptBins/BCrypt.Net.dll rename to prebuilts/BCrypt.Net.dll diff --git a/prebuilts/BCrypt.Net.pdb b/prebuilts/BCrypt.Net.pdb new file mode 100644 index 00000000..58306278 Binary files /dev/null and b/prebuilts/BCrypt.Net.pdb differ diff --git a/HttpBins/HttpServer.dll b/prebuilts/HttpServer.dll similarity index 100% rename from HttpBins/HttpServer.dll rename to prebuilts/HttpServer.dll diff --git a/HttpBins/HttpServer.pdb b/prebuilts/HttpServer.pdb similarity index 100% rename from HttpBins/HttpServer.pdb rename to prebuilts/HttpServer.pdb diff --git a/HttpBins/HttpServer.xml b/prebuilts/HttpServer.xml similarity index 100% rename from HttpBins/HttpServer.xml rename to prebuilts/HttpServer.xml diff --git a/SqlBins/Mono.Data.Sqlite.dll b/prebuilts/Mono.Data.Sqlite.dll similarity index 100% rename from SqlBins/Mono.Data.Sqlite.dll rename to prebuilts/Mono.Data.Sqlite.dll diff --git a/SqlBins/MySql.Data.dll b/prebuilts/MySql.Data.dll similarity index 100% rename from SqlBins/MySql.Data.dll rename to prebuilts/MySql.Data.dll diff --git a/SqlBins/MySql.Web.dll b/prebuilts/MySql.Web.dll similarity index 100% rename from SqlBins/MySql.Web.dll rename to prebuilts/MySql.Web.dll diff --git a/TShockAPI/Newtonsoft.Json.dll b/prebuilts/Newtonsoft.Json.dll similarity index 100% rename from TShockAPI/Newtonsoft.Json.dll rename to prebuilts/Newtonsoft.Json.dll diff --git a/SqlBins/sqlite3.def b/prebuilts/sqlite3.def similarity index 100% rename from SqlBins/sqlite3.def rename to prebuilts/sqlite3.def diff --git a/SqlBins/sqlite3.dll b/prebuilts/sqlite3.dll similarity index 100% rename from SqlBins/sqlite3.dll rename to prebuilts/sqlite3.dll