1
0
mirror of synced 2025-02-21 12:59:48 +01:00

Prepare for release

This commit is contained in:
asesidaa 2023-10-17 14:22:16 +08:00
parent 2c1098389b
commit ae8cd7829a
4 changed files with 16 additions and 5 deletions

View File

@ -12,7 +12,7 @@ This is a server for Taiko no Tatsujin Nijiiro ver CHN
1. Extract the server release anywhere
2. From the game files, copy `music_order.bin`, `musicinfo.bin`, `wordlist.bin`, `don_cos_reward.bin`, `shougou.bin` to `wwwroot/data/datatable` folder.
2. From the game files, copy `music_order.bin`, `musicinfo.bin`, `wordlist.bin`, `don_cos_reward.bin`, `shougou.bin`,`neiro.bin` to `wwwroot/data/datatable` folder.
3. (Optional) In `Certificates` folder, import `root.pfx` to trusted root store, `cert.pfx` to personal store. All the other import options can be kept default.

View File

@ -1,7 +1,13 @@
{
"DataSettings" : {
"DanDataFileName" : "dan_data.json",
"GaidenDataFileName" : "gaiden_data.json",
"EventFolderDataFileName" : "event_folder_data.json",
"IntroDataFileName" : "intro_data.json"
"IntroDataFileName" : "intro_data.json",
"MovieDataFileName": "movie_data.json",
"ShopFolderDataFileName": "shop_folder_data.json",
"TokenDataFileName": "token_data.json",
"LockedSongsDataFileName": "locked_songs_data.json",
"QRCodeDataFileName": "qrcode_data.json"
}
}

View File

@ -1,10 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<Version>0.4.0-alpha</Version>
<Version>1.0.0-beta</Version>
<LangVersion>11</LangVersion>
<EnableConfigurationBindingGenerator>false</EnableConfigurationBindingGenerator>
</PropertyGroup>
@ -115,6 +115,9 @@
<Content Update="wwwroot\data\neiro.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Update="wwwroot\datatable\.placeholder">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
@ -132,7 +135,9 @@
<ItemGroup>
<ProjectReference Include="..\GameDatabase\GameDatabase.csproj" />
<ProjectReference Include="..\SharedProject\SharedProject.csproj" />
<ProjectReference Include="..\TaikoWebUI\TaikoWebUI.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)'=='Debug'">
<ProjectReference Include="..\TaikoWebUI\TaikoWebUI.csproj" />
</ItemGroup>
</Project>