Move resources to "prebuilts" folder. Fixes #904
This commit is contained in:
parent
c36738e2ba
commit
630c045397
14 changed files with 9 additions and 9 deletions
|
|
@ -54,21 +54,21 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="HttpServer">
|
<Reference Include="HttpServer">
|
||||||
<HintPath>..\HttpBins\HttpServer.dll</HintPath>
|
<HintPath>..\prebuilts\HttpServer.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Mono.Data.Sqlite">
|
<Reference Include="Mono.Data.Sqlite">
|
||||||
<HintPath>..\SqlBins\Mono.Data.Sqlite.dll</HintPath>
|
<HintPath>..\prebuilts\Mono.Data.Sqlite.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="MySql.Data, Version=6.3.6.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
|
<Reference Include="MySql.Data, Version=6.3.6.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
|
||||||
<SpecificVersion>False</SpecificVersion>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
<HintPath>..\SqlBins\MySql.Data.dll</HintPath>
|
<HintPath>..\prebuilts\MySql.Data.dll</HintPath>
|
||||||
<Private>True</Private>
|
<Private>True</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Newtonsoft.Json">
|
<Reference Include="Newtonsoft.Json">
|
||||||
<HintPath>.\Newtonsoft.Json.dll</HintPath>
|
<HintPath>..\prebuilts\Newtonsoft.Json.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="BCrypt.Net">
|
<Reference Include="BCrypt.Net">
|
||||||
<HintPath>..\BCryptBins\BCrypt.Net.dll</HintPath>
|
<HintPath>..\prebuilts\BCrypt.Net.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
<Reference Include="System.Data" />
|
<Reference Include="System.Data" />
|
||||||
|
|
|
||||||
|
|
@ -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_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)
|
terraria_debug_bin = os.path.join(cur_wd, "TerrariaServerAPI", "bin", "Debug", terraria_bin_name)
|
||||||
sql_dep = os.path.join(cur_wd, "SqlBins")
|
sql_dep = os.path.join(cur_wd, "prebuilts")
|
||||||
http_bin = os.path.join(cur_wd, "HttpBins", http_bin_name)
|
http_bin = os.path.join(cur_wd, "prebuilts", http_bin_name)
|
||||||
json_bin = os.path.join(cur_wd, "TShockAPI", json_bin_name)
|
json_bin = os.path.join(cur_wd, "prebuilts", json_bin_name)
|
||||||
bcrypt_bin = os.path.join(cur_wd, "BCryptBins", bcrypt_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)
|
release_bin = os.path.join(cur_wd, "TShockAPI", "bin", "Release", tshock_bin_name)
|
||||||
debug_folder = os.path.join(cur_wd, "TShockAPI", "bin", "Debug")
|
debug_folder = os.path.join(cur_wd, "TShockAPI", "bin", "Debug")
|
||||||
|
|
||||||
|
|
|
||||||
BIN
prebuilts/BCrypt.Net.pdb
Normal file
BIN
prebuilts/BCrypt.Net.pdb
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue