其余文件
This commit is contained in:
parent
8526b61dbd
commit
fbccde859f
9
BuildCLI/build_android.bat
Normal file
9
BuildCLI/build_android.bat
Normal file
@ -0,0 +1,9 @@
|
||||
cd /d %~dp0
|
||||
|
||||
call path_define.bat
|
||||
|
||||
%UNITYEDITOR_PATH%/Unity.exe %WORKSPACE% -logFile %BUILD_LOGFILE% -executeMethod TEngine.ReleaseTools.AutomationBuildAndroid -quit -batchmode -CustomArgs:Language=en_US; %WORKSPACE%
|
||||
|
||||
@REM for /f "delims=[" %%i in (%BUILD_LOGFILE%) do echo %%i
|
||||
|
||||
pause
|
18
BuildCLI/build_android.sh
Normal file
18
BuildCLI/build_android.sh
Normal file
@ -0,0 +1,18 @@
|
||||
#!/bin/bash
|
||||
|
||||
cd "$(dirname "$0")"
|
||||
|
||||
source ./path_define.sh
|
||||
|
||||
"${UNITYEDITOR_PATH}/Unity" "${WORKSPACE}" \
|
||||
-logFile "${BUILD_LOGFILE}" \
|
||||
-executeMethod TEngine.ReleaseTools.AutomationBuildAndroid \
|
||||
-quit -batchmode \
|
||||
-CustomArgs:Language=en_US "${WORKSPACE}"
|
||||
|
||||
while IFS= read -r line; do
|
||||
echo "$line"
|
||||
done < "${BUILD_LOGFILE}"
|
||||
|
||||
echo "按任意键继续..."
|
||||
read -k1
|
6
BuildCLI/path_define.bat
Normal file
6
BuildCLI/path_define.bat
Normal file
@ -0,0 +1,6 @@
|
||||
cd /d %~dp0
|
||||
|
||||
set WORKSPACE=G:/github/TEngine/UnityProject
|
||||
set UNITYEDITOR_PATH=G:/UnityEditor/2021.3.20f1c1/Editor
|
||||
set BUILD_DLL_LOGFILE=./build_dll.log
|
||||
set BUILD_LOGFILE=./build.log
|
14
BuildCLI/path_define.sh
Normal file
14
BuildCLI/path_define.sh
Normal file
@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
cd "$(dirname "$0")"
|
||||
|
||||
export WORKSPACE="/Users/your_user/github/TEngine/UnityProject" # 请替换为 macOS 上的实际路径
|
||||
export UNITYEDITOR_PATH="/Applications/Unity/Hub/Editor/2021.3.20f1c1/Unity.app/Contents/MacOS" # 请替换为 macOS 上的 Unity 路径
|
||||
export BUILD_DLL_LOGFILE="./build_dll.log"
|
||||
export BUILD_LOGFILE="./build.log"
|
||||
|
||||
echo "环境变量已设置:"
|
||||
echo "WORKSPACE=${WORKSPACE}"
|
||||
echo "UNITYEDITOR_PATH=${UNITYEDITOR_PATH}"
|
||||
echo "BUILD_DLL_LOGFILE=${BUILD_DLL_LOGFILE}"
|
||||
echo "BUILD_LOGFILE=${BUILD_LOGFILE}"
|
50
Configs/GameConfig/CustomTemplate/ConfigSystem.cs
Normal file
50
Configs/GameConfig/CustomTemplate/ConfigSystem.cs
Normal file
@ -0,0 +1,50 @@
|
||||
using Luban;
|
||||
using GameBase;
|
||||
using GameConfig;
|
||||
using TEngine;
|
||||
using UnityEngine;
|
||||
|
||||
/// <summary>
|
||||
/// 配置加载器。
|
||||
/// </summary>
|
||||
public class ConfigSystem : Singleton<ConfigSystem>
|
||||
{
|
||||
private bool _init = false;
|
||||
|
||||
private Tables _tables;
|
||||
|
||||
public Tables Tables
|
||||
{
|
||||
get
|
||||
{
|
||||
if (!_init)
|
||||
{
|
||||
Load();
|
||||
}
|
||||
|
||||
return _tables;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 加载配置。
|
||||
/// </summary>
|
||||
public void Load()
|
||||
{
|
||||
_tables = new Tables(LoadByteBuf);
|
||||
_init = true;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 加载二进制配置。
|
||||
/// </summary>
|
||||
/// <param name="file">FileName</param>
|
||||
/// <returns>ByteBuf</returns>
|
||||
private ByteBuf LoadByteBuf(string file)
|
||||
{
|
||||
TextAsset textAsset = GameModule.Resource.LoadAsset<TextAsset>(file);
|
||||
byte[] bytes = textAsset.bytes;
|
||||
GameModule.Resource.UnloadAsset(textAsset);
|
||||
return new ByteBuf(bytes);
|
||||
}
|
||||
}
|
@ -0,0 +1,55 @@
|
||||
using Luban;
|
||||
|
||||
{{namespace_with_grace_begin __namespace}}
|
||||
public partial class {{__name}}
|
||||
{
|
||||
#region The Tables
|
||||
|
||||
{{~for table in __tables ~}}
|
||||
{{~if table.comment != '' ~}}
|
||||
/// <summary>
|
||||
/// {{escape_comment table.comment}}
|
||||
/// </summary>
|
||||
{{~end~}}
|
||||
private {{table.full_name}} m_{{table.name}};
|
||||
public {{table.full_name}} {{format_property_name __code_style table.name}}
|
||||
{
|
||||
get
|
||||
{
|
||||
if (m_{{table.name}} == null)
|
||||
{
|
||||
m_{{table.name}} = new {{table.full_name}}(defaultLoader("{{table.output_data_file}}"));
|
||||
m_{{table.name}}.ResolveRef(this);
|
||||
}
|
||||
return m_{{table.name}};
|
||||
}
|
||||
set
|
||||
{
|
||||
m_{{table.name}} = value;
|
||||
m_{{table.name}}.ResolveRef(this);
|
||||
}
|
||||
}
|
||||
{{~end~}}
|
||||
|
||||
#endregion
|
||||
|
||||
System.Func<string, ByteBuf> defaultLoader;
|
||||
|
||||
public {{__name}}(System.Func<string, ByteBuf> loader)
|
||||
{
|
||||
SetDefaultLoader(loader);
|
||||
Init();
|
||||
}
|
||||
|
||||
public void SetDefaultLoader(System.Func<string, ByteBuf> loader)
|
||||
{
|
||||
defaultLoader = null;
|
||||
defaultLoader = loader;
|
||||
}
|
||||
|
||||
//public partial void Init();
|
||||
|
||||
public void Init(){}
|
||||
}
|
||||
|
||||
{{namespace_with_grace_end __namespace}}
|
BIN
Configs/GameConfig/Datas/Scene/gameScene.xlsx
Normal file
BIN
Configs/GameConfig/Datas/Scene/gameScene.xlsx
Normal file
Binary file not shown.
BIN
Configs/GameConfig/Datas/UI/gameUILoad.xlsx
Normal file
BIN
Configs/GameConfig/Datas/UI/gameUILoad.xlsx
Normal file
Binary file not shown.
BIN
Configs/GameConfig/Datas/UI/gameUITip.xlsx
Normal file
BIN
Configs/GameConfig/Datas/UI/gameUITip.xlsx
Normal file
Binary file not shown.
BIN
Configs/GameConfig/Datas/UI/gameUIWidget.xlsx
Normal file
BIN
Configs/GameConfig/Datas/UI/gameUIWidget.xlsx
Normal file
Binary file not shown.
BIN
Configs/GameConfig/Datas/UI/gameUIWindows.xlsx
Normal file
BIN
Configs/GameConfig/Datas/UI/gameUIWindows.xlsx
Normal file
Binary file not shown.
BIN
Configs/GameConfig/Datas/__beans__.xlsx
Normal file
BIN
Configs/GameConfig/Datas/__beans__.xlsx
Normal file
Binary file not shown.
BIN
Configs/GameConfig/Datas/__enums__.xlsx
Normal file
BIN
Configs/GameConfig/Datas/__enums__.xlsx
Normal file
Binary file not shown.
BIN
Configs/GameConfig/Datas/__tables__.xlsx
Normal file
BIN
Configs/GameConfig/Datas/__tables__.xlsx
Normal file
Binary file not shown.
BIN
Configs/GameConfig/Datas/item.xlsx
Normal file
BIN
Configs/GameConfig/Datas/item.xlsx
Normal file
Binary file not shown.
BIN
Configs/GameConfig/Datas/roleUnit.xlsx
Normal file
BIN
Configs/GameConfig/Datas/roleUnit.xlsx
Normal file
Binary file not shown.
17
Configs/GameConfig/Defines/builtin.xml
Normal file
17
Configs/GameConfig/Defines/builtin.xml
Normal file
@ -0,0 +1,17 @@
|
||||
<module name="">
|
||||
<bean name="vector2" valueType="1" sep=",">
|
||||
<var name="x" type="float"/>
|
||||
<var name="y" type="float"/>
|
||||
</bean>
|
||||
<bean name="vector3" valueType="1" sep=",">
|
||||
<var name="x" type="float"/>
|
||||
<var name="y" type="float"/>
|
||||
<var name="z" type="float"/>
|
||||
</bean>
|
||||
<bean name="vector4" valueType="1" sep=",">
|
||||
<var name="x" type="float"/>
|
||||
<var name="y" type="float"/>
|
||||
<var name="z" type="float"/>
|
||||
<var name="w" type="float"/>
|
||||
</bean>
|
||||
</module>
|
20
Configs/GameConfig/gen_code_bin_to_project.bat
Normal file
20
Configs/GameConfig/gen_code_bin_to_project.bat
Normal file
@ -0,0 +1,20 @@
|
||||
Cd /d %~dp0
|
||||
echo %CD%
|
||||
|
||||
set WORKSPACE=../..
|
||||
set LUBAN_DLL=%WORKSPACE%\Tools\Luban\Luban.dll
|
||||
set CONF_ROOT=.
|
||||
set DATA_OUTPATH=%WORKSPACE%/EintooAR/Assets/AssetRaw/Configs/bytes/
|
||||
set CODE_OUTPATH=%WORKSPACE%/EintooAR/Assets/GameScripts/HotFix/GameProto/GameConfig/
|
||||
|
||||
xcopy /s /e /i /y "%CONF_ROOT%\CustomTemplate\ConfigSystem.cs" "%WORKSPACE%\EintooAR\Assets\GameScripts\HotFix\GameProto\ConfigSystem.cs"
|
||||
|
||||
dotnet %LUBAN_DLL% ^
|
||||
-t client ^
|
||||
-c cs-bin ^
|
||||
-d bin^
|
||||
--conf %CONF_ROOT%\luban.conf ^
|
||||
-x outputCodeDir=%CODE_OUTPATH% ^
|
||||
-x outputDataDir=%DATA_OUTPATH%
|
||||
pause
|
||||
|
24
Configs/GameConfig/gen_code_bin_to_project.sh
Normal file
24
Configs/GameConfig/gen_code_bin_to_project.sh
Normal file
@ -0,0 +1,24 @@
|
||||
#!/bin/bash
|
||||
|
||||
cd "$(dirname "$0")"
|
||||
echo "当前目录: $(pwd)"
|
||||
|
||||
export WORKSPACE="$(realpath ../../)"
|
||||
export LUBAN_DLL="${WORKSPACE}/Tools/Luban/Luban.dll"
|
||||
export CONF_ROOT="$(pwd)"
|
||||
export DATA_OUTPATH="${WORKSPACE}/EintooAR/Assets/AssetRaw/Configs/bytes/"
|
||||
export CODE_OUTPATH="${WORKSPACE}/EintooAR/Assets/GameScripts/HotFix/GameProto/GameConfig/"
|
||||
|
||||
cp -R "${CONF_ROOT}/CustomTemplate/ConfigSystem.cs" \
|
||||
"${WORKSPACE}/EintooAR/Assets/GameScripts/HotFix/GameProto/ConfigSystem.cs"
|
||||
|
||||
dotnet "${LUBAN_DLL}" \
|
||||
-t client \
|
||||
-c cs-bin \
|
||||
-d bin \
|
||||
--conf "${CONF_ROOT}/luban.conf" \
|
||||
-x outputCodeDir="${CODE_OUTPATH}" \
|
||||
-x outputDataDir="${DATA_OUTPATH}"
|
||||
|
||||
echo "操作完成,按任意键退出..."
|
||||
read -k1
|
21
Configs/GameConfig/gen_code_bin_to_project_lazyload.bat
Normal file
21
Configs/GameConfig/gen_code_bin_to_project_lazyload.bat
Normal file
@ -0,0 +1,21 @@
|
||||
Cd /d %~dp0
|
||||
echo %CD%
|
||||
|
||||
set WORKSPACE=../..
|
||||
set LUBAN_DLL=%WORKSPACE%\Tools\Luban\Luban.dll
|
||||
set CONF_ROOT=.
|
||||
set DATA_OUTPATH=%WORKSPACE%/EintooAR/Assets/AssetRaw/Configs/bytes/
|
||||
set CODE_OUTPATH=%WORKSPACE%/EintooAR/Assets/GameScripts/HotFix/GameProto/GameConfig/
|
||||
|
||||
xcopy /s /e /i /y "%CONF_ROOT%\CustomTemplate\ConfigSystem.cs" "%WORKSPACE%\EintooAR\Assets\GameScripts\HotFix\GameProto\ConfigSystem.cs"
|
||||
|
||||
dotnet %LUBAN_DLL% ^
|
||||
-t client ^
|
||||
-c cs-bin ^
|
||||
-d bin^
|
||||
--conf %CONF_ROOT%\luban.conf ^
|
||||
--customTemplateDir %CONF_ROOT%\CustomTemplate\CustomTemplate_Client_LazyLoad ^
|
||||
-x outputCodeDir=%CODE_OUTPATH% ^
|
||||
-x outputDataDir=%DATA_OUTPATH%
|
||||
pause
|
||||
|
25
Configs/GameConfig/gen_code_bin_to_project_lazyload.sh
Normal file
25
Configs/GameConfig/gen_code_bin_to_project_lazyload.sh
Normal file
@ -0,0 +1,25 @@
|
||||
#!/bin/bash
|
||||
|
||||
cd "$(dirname "$0")"
|
||||
echo "当前目录: $(pwd)"
|
||||
|
||||
export WORKSPACE="$(realpath ../../)"
|
||||
export LUBAN_DLL="${WORKSPACE}/Tools/Luban/Luban.dll"
|
||||
export CONF_ROOT="$(pwd)"
|
||||
export DATA_OUTPATH="${WORKSPACE}/UnityProject/Assets/AssetRaw/Configs/bytes/"
|
||||
export CODE_OUTPATH="${WORKSPACE}/UnityProject/Assets/GameScripts/HotFix/GameProto/GameConfig/"
|
||||
|
||||
cp -R "${CONF_ROOT}/CustomTemplate/ConfigSystem.cs" \
|
||||
"${WORKSPACE}/UnityProject/Assets/GameScripts/HotFix/GameProto/ConfigSystem.cs"
|
||||
|
||||
dotnet "${LUBAN_DLL}" \
|
||||
-t client \
|
||||
-c cs-bin \
|
||||
-d bin \
|
||||
--conf "${CONF_ROOT}/luban.conf" \
|
||||
--customTemplateDir "${CONF_ROOT}/CustomTemplate/CustomTemplate_Client_LazyLoad" \
|
||||
-x outputCodeDir="${CODE_OUTPATH}" \
|
||||
-x outputDataDir="${DATA_OUTPATH}"
|
||||
|
||||
echo "操作完成,按任意键退出..."
|
||||
read -k1
|
18
Configs/GameConfig/gen_code_bin_to_server.bat
Normal file
18
Configs/GameConfig/gen_code_bin_to_server.bat
Normal file
@ -0,0 +1,18 @@
|
||||
Cd /d %~dp0
|
||||
echo %CD%
|
||||
|
||||
set WORKSPACE=../../
|
||||
set LUBAN_DLL=%WORKSPACE%/Tools/Luban/Luban.dll
|
||||
set CONF_ROOT=.
|
||||
set DATA_OUTPATH=%WORKSPACE%/Server/GameConfig
|
||||
set CODE_OUTPATH=%WORKSPACE%/Server/Hotfix/Config/GameConfig
|
||||
|
||||
dotnet %LUBAN_DLL% ^
|
||||
-t server^
|
||||
-c cs-bin ^
|
||||
-d bin^
|
||||
--conf %CONF_ROOT%\luban.conf ^
|
||||
-x outputCodeDir=%CODE_OUTPATH% ^
|
||||
-x outputDataDir=%DATA_OUTPATH%
|
||||
pause
|
||||
|
21
Configs/GameConfig/gen_code_bin_to_server.sh
Normal file
21
Configs/GameConfig/gen_code_bin_to_server.sh
Normal file
@ -0,0 +1,21 @@
|
||||
#!/bin/bash
|
||||
|
||||
cd "$(dirname "$0")"
|
||||
echo "当前目录: $(pwd)"
|
||||
|
||||
export WORKSPACE="$(realpath ../../)"
|
||||
export LUBAN_DLL="${WORKSPACE}/Tools/Luban/Luban.dll"
|
||||
export CONF_ROOT="$(pwd)"
|
||||
export DATA_OUTPATH="${WORKSPACE}/Server/GameConfig"
|
||||
export CODE_OUTPATH="${WORKSPACE}/Server/Hotfix/Config/GameConfig"
|
||||
|
||||
dotnet "${LUBAN_DLL}" \
|
||||
-t server \
|
||||
-c cs-bin \
|
||||
-d bin \
|
||||
--conf "${CONF_ROOT}/luban.conf" \
|
||||
-x outputCodeDir="${CODE_OUTPATH}" \
|
||||
-x outputDataDir="${DATA_OUTPATH}"
|
||||
|
||||
echo "操作完成,按任意键退出..."
|
||||
read -k1
|
22
Configs/GameConfig/luban.conf
Normal file
22
Configs/GameConfig/luban.conf
Normal file
@ -0,0 +1,22 @@
|
||||
{
|
||||
"groups":
|
||||
[
|
||||
{"names":["c"], "default":true},
|
||||
{"names":["s"], "default":true},
|
||||
{"names":["e"], "default":true}
|
||||
],
|
||||
"schemaFiles":
|
||||
[
|
||||
{"fileName":"Defines", "type":""},
|
||||
{"fileName":"Datas/__tables__.xlsx", "type":"table"},
|
||||
{"fileName":"Datas/__beans__.xlsx", "type":"bean"},
|
||||
{"fileName":"Datas/__enums__.xlsx", "type":"enum"}
|
||||
],
|
||||
"dataDir": "Datas",
|
||||
"targets":
|
||||
[
|
||||
{"name":"server", "manager":"Tables", "groups":["s"], "topModule":"GameConfig"},
|
||||
{"name":"client", "manager":"Tables", "groups":["c"], "topModule":"GameConfig"},
|
||||
{"name":"all", "manager":"Tables", "groups":["c,s,e"], "topModule":"GameConfig"}
|
||||
]
|
||||
}
|
15
GameServer/.idea/.idea.GameServer/.idea/CopilotChatHistory.xml
generated
Normal file
15
GameServer/.idea/.idea.GameServer/.idea/CopilotChatHistory.xml
generated
Normal file
@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="CopilotChatHistory">
|
||||
<option name="conversations">
|
||||
<list>
|
||||
<Conversation>
|
||||
<option name="createTime" value="1737038552710" />
|
||||
<option name="id" value="01946f90de867f7f8ab7e2d057971bdc" />
|
||||
<option name="title" value="新对话 2025年1月16日 22:42:32" />
|
||||
<option name="updateTime" value="1737038552710" />
|
||||
</Conversation>
|
||||
</list>
|
||||
</option>
|
||||
</component>
|
||||
</project>
|
4
GameServer/.idea/.idea.GameServer/.idea/encodings.xml
generated
Normal file
4
GameServer/.idea/.idea.GameServer/.idea/encodings.xml
generated
Normal file
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="Encoding" addBOMForNewFiles="with BOM under Windows, with no BOM otherwise" />
|
||||
</project>
|
8
GameServer/.idea/.idea.GameServer/.idea/indexLayout.xml
generated
Normal file
8
GameServer/.idea/.idea.GameServer/.idea/indexLayout.xml
generated
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="UserContentModel">
|
||||
<attachedFolders />
|
||||
<explicitIncludes />
|
||||
<explicitExcludes />
|
||||
</component>
|
||||
</project>
|
6
GameServer/.idea/.idea.GameServer/.idea/projectSettingsUpdater.xml
generated
Normal file
6
GameServer/.idea/.idea.GameServer/.idea/projectSettingsUpdater.xml
generated
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="RiderProjectSettingsUpdater">
|
||||
<option name="vcsConfiguration" value="2" />
|
||||
</component>
|
||||
</project>
|
6
GameServer/.idea/.idea.GameServer/.idea/vcs.xml
generated
Normal file
6
GameServer/.idea/.idea.GameServer/.idea/vcs.xml
generated
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
|
||||
</component>
|
||||
</project>
|
462
GameServer/.idea/.idea.GameServer/.idea/workspace.xml
generated
Normal file
462
GameServer/.idea/.idea.GameServer/.idea/workspace.xml
generated
Normal file
@ -0,0 +1,462 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="AutoGeneratedRunConfigurationManager">
|
||||
<projectFile>Main/Main.csproj</projectFile>
|
||||
</component>
|
||||
<component name="AutoImportSettings">
|
||||
<option name="autoReloadType" value="SELECTIVE" />
|
||||
</component>
|
||||
<component name="ChangeListManager">
|
||||
<list default="true" id="6d3413b7-5b49-4a29-a0c2-bf3c0dd9199e" name="Changes" comment="">
|
||||
<change beforePath="$PROJECT_DIR$/.idea/.idea.GameServer/.idea/.gitignore" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/.idea/.idea.GameServer/.idea/CopilotChatHistory.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/.idea.GameServer/.idea/CopilotChatHistory.xml" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/.idea/.idea.GameServer/.idea/vcs.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/.idea.GameServer/.idea/vcs.xml" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/.vs/GameServer/DesignTimeBuild/.dtbcache.v2" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/.vs/GameServer/v17/.futdcache.v2" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/.vs/GameServer/v17/.suo" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/.vs/GameServer/v17/DocumentLayout.backup.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/.vs/GameServer/v17/DocumentLayout.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/.vs/ProjectEvaluation/gameserver.metadata.v9.bin" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/.vs/ProjectEvaluation/gameserver.projects.v9.bin" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/.vs/ProjectEvaluation/gameserver.strings.v9.bin" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/Logs/Server/Server20241101/Server..2024110116.Info.log" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/Logs/Server/Server20241103/Server..2024110314.Info.log" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/Logs/Server/Server20241103/Server..2024110316.Info.log" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/Logs/Server/Server20250115/Server..2025011523.Info.log" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/Logs/Server/Server20250116/Server..2025011610.Debug.log" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/Logs/Server/Server20250116/Server..2025011610.Info.log" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/Logs/Server/Server20250116/Server..2025011611.Debug.log" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/Logs/Server/Server20250116/Server..2025011611.Info.log" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/Logs/Server/Server20250116/Server..2025011613.Info.log" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/Logs/Server/Server20250116/Server..2025011613.Warn.log" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/Logs/Server/Server20250116/Server..2025011614.Error.log" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/Logs/Server/Server20250116/Server..2025011614.Info.log" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/Logs/Server/Server20250116/Server..2025011614.Warn.log" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/Logs/Server/Server20250116/Server..2025011615.Error.log" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/Logs/Server/Server20250116/Server..2025011615.Info.log" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/Logs/Server/Server20250116/Server..2025011616.Error.log" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/Logs/Server/Server20250116/Server..2025011616.Info.log" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/Logs/Server/Server20250116/Server..2025011616.Warn.log" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/Logs/Server/Server20250116/Server..2025011617.Error.log" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/Logs/Server/Server20250116/Server..2025011617.Info.log" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/AWSSDK.Core.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/AWSSDK.SecurityToken.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/CommandLine.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/DnsClient.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/Entity.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/Entity.pdb" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/Fantasy-Net.NLog.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/Fantasy-Net.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/Hotfix.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/Hotfix.pdb" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/Main.deps.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/Main.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/Main.exe" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/Main.pdb" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/Main.runtimeconfig.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/MongoDB.Bson.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/MongoDB.Driver.Core.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/MongoDB.Driver.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/MongoDB.Libmongocrypt.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/NLog.config" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/NLog.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/NLog.xsd" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/Newtonsoft.Json.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/SharpCompress.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/Snappier.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/System.IO.Pipelines.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/ZstdSharp.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/protobuf-net.Core.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/protobuf-net.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/runtimes/linux/native/libmongocrypt.so" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/runtimes/osx/native/libmongocrypt.dylib" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Bin/Debug/net8.0/runtimes/win/native/mongocrypt.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Config/Binary/SceneConfigData.bytes" beforeDir="false" afterPath="$PROJECT_DIR$/Config/Binary/SceneConfigData.bytes" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Config/Binary/WorldConfigData.bytes" beforeDir="false" afterPath="$PROJECT_DIR$/Config/Binary/WorldConfigData.bytes" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Config/Excel/Server/MachineConfig.xlsx" beforeDir="false" afterPath="$PROJECT_DIR$/Config/Excel/Server/MachineConfig.xlsx" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Config/Excel/Server/ProcessConfig.xlsx" beforeDir="false" afterPath="$PROJECT_DIR$/Config/Excel/Server/ProcessConfig.xlsx" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Config/Excel/Server/SceneConfig.xlsx" beforeDir="false" afterPath="$PROJECT_DIR$/Config/Excel/Server/SceneConfig.xlsx" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Config/Excel/Server/WorldConfig.xlsx" beforeDir="false" afterPath="$PROJECT_DIR$/Config/Excel/Server/WorldConfig.xlsx" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Config/Excel/Version.txt" beforeDir="false" afterPath="$PROJECT_DIR$/Config/Excel/Version.txt" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Config/Json/Server/SceneConfigData.Json" beforeDir="false" afterPath="$PROJECT_DIR$/Config/Json/Server/SceneConfigData.Json" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Config/Json/Server/WorldConfigData.Json" beforeDir="false" afterPath="$PROJECT_DIR$/Config/Json/Server/WorldConfigData.Json" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Config/NetworkProtocol/Inner/InnerMessage.proto" beforeDir="false" afterPath="$PROJECT_DIR$/Config/NetworkProtocol/Inner/InnerMessage.proto" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Config/NetworkProtocol/Outer/OuterMessage.proto" beforeDir="false" afterPath="$PROJECT_DIR$/Config/NetworkProtocol/Outer/OuterMessage.proto" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/GameServer.sln" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/GameServer.sln.DotSettings.user" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/Config.csproj" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/Tools/Exporter/ConfigTable/Excel/Custom.txt" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/Tools/Exporter/ConfigTable/Excel/Server/MachineConfig.xlsx" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/Tools/Exporter/ConfigTable/Excel/Server/ProcessConfig.xlsx" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/Tools/Exporter/ConfigTable/Excel/Server/SceneConfig.xlsx" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/Tools/Exporter/ConfigTable/Excel/Server/WorldConfig.xlsx" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/Tools/Exporter/ConfigTable/Excel/Version.txt" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/Tools/Exporter/ConfigTable/Json/Server/MachineConfigData.Json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/Tools/Exporter/ConfigTable/Json/Server/ProcessConfigData.Json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/Tools/Exporter/ConfigTable/Json/Server/SceneConfigData.Json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/Tools/Exporter/ConfigTable/Json/Server/WorldConfigData.Json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/Tools/Exporter/ConfigTable/NetworkProtocol/Inner/InnerMessage.proto" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/Tools/Exporter/ConfigTable/NetworkProtocol/OpCode.Cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/Tools/Exporter/ConfigTable/NetworkProtocol/Outer/OuterMessage.proto" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/Tools/Exporter/ConfigTable/NetworkProtocol/RouteType.Config" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/Tools/Exporter/ConfigTable/README.md" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/bin/Debug/net8.0/Config.deps.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/bin/Debug/net8.0/Config.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/bin/Debug/net8.0/Config.pdb" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/obj/Config.csproj.nuget.dgspec.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/obj/Config.csproj.nuget.g.props" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/obj/Config.csproj.nuget.g.targets" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/obj/Debug/net8.0/Config.AssemblyInfo.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/obj/Debug/net8.0/Config.AssemblyInfoInputs.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/obj/Debug/net8.0/Config.GeneratedMSBuildEditorConfig.editorconfig" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/obj/Debug/net8.0/Config.GlobalUsings.g.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/obj/Debug/net8.0/Config.assets.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/obj/Debug/net8.0/Config.csproj.AssemblyReference.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/obj/Debug/net8.0/Config.csproj.CoreCompileInputs.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/obj/Debug/net8.0/Config.csproj.FileListAbsolute.txt" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/obj/Debug/net8.0/Config.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/obj/Debug/net8.0/Config.pdb" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/obj/Debug/net8.0/ref/Config.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/obj/Debug/net8.0/refint/Config.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/obj/project.assets.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/obj/project.nuget.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/obj/project.packagespec.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/obj/rider.project.model.nuget.info" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/Config/obj/rider.project.restore.info" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/ConfigTable.csproj" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/CommandLine.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/EPPlus.Interfaces.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/EPPlus.System.Drawing.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/EPPlus.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/ExporterSettings.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/Fantasy.Tools.ConfigTable" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/Fantasy.Tools.ConfigTable.deps.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/Fantasy.Tools.ConfigTable.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/Fantasy.Tools.ConfigTable.pdb" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/Fantasy.Tools.ConfigTable.runtimeconfig.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/Microsoft.CodeAnalysis.CSharp.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/Microsoft.CodeAnalysis.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/Microsoft.Extensions.Configuration.Abstractions.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/Microsoft.Extensions.Configuration.FileExtensions.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/Microsoft.Extensions.Configuration.Json.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/Microsoft.Extensions.Configuration.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/Microsoft.Extensions.FileProviders.Abstractions.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/Microsoft.Extensions.FileProviders.Physical.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/Microsoft.Extensions.FileSystemGlobbing.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/Microsoft.Extensions.Primitives.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/Microsoft.IO.RecyclableMemoryStream.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/Microsoft.Win32.SystemEvents.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/Newtonsoft.Json.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/Run.bat" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/Run.sh" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/System.Drawing.Common.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/System.Formats.Asn1.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/System.Security.Cryptography.Pkcs.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/System.Text.Json.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/protobuf-net.Core.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/Tools/Exporter/ConfigTable/protobuf-net.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/bin/Debug/net8.0/ConfigTable.deps.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/bin/Debug/net8.0/ConfigTable.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/bin/Debug/net8.0/ConfigTable.pdb" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/obj/ConfigTable.csproj.nuget.dgspec.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/obj/ConfigTable.csproj.nuget.g.props" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/obj/ConfigTable.csproj.nuget.g.targets" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/obj/Debug/net8.0/ConfigTable.AssemblyInfo.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/obj/Debug/net8.0/ConfigTable.AssemblyInfoInputs.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/obj/Debug/net8.0/ConfigTable.GeneratedMSBuildEditorConfig.editorconfig" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/obj/Debug/net8.0/ConfigTable.GlobalUsings.g.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/obj/Debug/net8.0/ConfigTable.assets.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/obj/Debug/net8.0/ConfigTable.csproj.AssemblyReference.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/obj/Debug/net8.0/ConfigTable.csproj.CoreCompileInputs.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/obj/Debug/net8.0/ConfigTable.csproj.FileListAbsolute.txt" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/obj/Debug/net8.0/ConfigTable.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/obj/Debug/net8.0/ConfigTable.pdb" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/obj/Debug/net8.0/ref/ConfigTable.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/obj/Debug/net8.0/refint/ConfigTable.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/obj/project.assets.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/obj/project.nuget.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/obj/project.packagespec.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/obj/rider.project.model.nuget.info" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/ConfigTable/obj/rider.project.restore.info" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/NetWorkProtocol.csproj" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/Tools/Exporter/NetworkProtocol/CommandLine.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/Tools/Exporter/NetworkProtocol/ExporterSettings.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/Tools/Exporter/NetworkProtocol/Fantasy.Tools.NetworkProtocol" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/Tools/Exporter/NetworkProtocol/Fantasy.Tools.NetworkProtocol.deps.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/Tools/Exporter/NetworkProtocol/Fantasy.Tools.NetworkProtocol.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/Tools/Exporter/NetworkProtocol/Fantasy.Tools.NetworkProtocol.pdb" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/Tools/Exporter/NetworkProtocol/Fantasy.Tools.NetworkProtocol.runtimeconfig.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/Tools/Exporter/NetworkProtocol/Microsoft.Extensions.Configuration.Abstractions.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/Tools/Exporter/NetworkProtocol/Microsoft.Extensions.Configuration.FileExtensions.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/Tools/Exporter/NetworkProtocol/Microsoft.Extensions.Configuration.Json.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/Tools/Exporter/NetworkProtocol/Microsoft.Extensions.Configuration.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/Tools/Exporter/NetworkProtocol/Microsoft.Extensions.FileProviders.Abstractions.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/Tools/Exporter/NetworkProtocol/Microsoft.Extensions.FileProviders.Physical.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/Tools/Exporter/NetworkProtocol/Microsoft.Extensions.FileSystemGlobbing.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/Tools/Exporter/NetworkProtocol/Microsoft.Extensions.Primitives.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/Tools/Exporter/NetworkProtocol/Newtonsoft.Json.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/Tools/Exporter/NetworkProtocol/Run.bat" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/Tools/Exporter/NetworkProtocol/Run.sh" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/bin/Debug/net8.0/NetWorkProtocol.deps.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/bin/Debug/net8.0/NetWorkProtocol.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/bin/Debug/net8.0/NetWorkProtocol.pdb" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/obj/Debug/net8.0/NetWorkProtocol.AssemblyInfo.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/obj/Debug/net8.0/NetWorkProtocol.AssemblyInfoInputs.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/obj/Debug/net8.0/NetWorkProtocol.GeneratedMSBuildEditorConfig.editorconfig" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/obj/Debug/net8.0/NetWorkProtocol.GlobalUsings.g.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/obj/Debug/net8.0/NetWorkProtocol.assets.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/obj/Debug/net8.0/NetWorkProtocol.csproj.AssemblyReference.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/obj/Debug/net8.0/NetWorkProtocol.csproj.CoreCompileInputs.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/obj/Debug/net8.0/NetWorkProtocol.csproj.FileListAbsolute.txt" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/obj/Debug/net8.0/NetWorkProtocol.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/obj/Debug/net8.0/NetWorkProtocol.pdb" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/obj/Debug/net8.0/ref/NetWorkProtocol.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/obj/Debug/net8.0/refint/NetWorkProtocol.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/obj/NetWorkProtocol.csproj.nuget.dgspec.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/obj/NetWorkProtocol.csproj.nuget.g.props" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/obj/NetWorkProtocol.csproj.nuget.g.targets" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/obj/project.assets.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/obj/project.nuget.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/obj/project.packagespec.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/obj/rider.project.model.nuget.info" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NetWorkProtocol/obj/rider.project.restore.info" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/NuGet.csproj" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/obj/Debug/net8.0/NuGet.AssemblyInfo.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/obj/Debug/net8.0/NuGet.AssemblyInfoInputs.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/obj/Debug/net8.0/NuGet.GeneratedMSBuildEditorConfig.editorconfig" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/obj/Debug/net8.0/NuGet.GlobalUsings.g.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/obj/Debug/net8.0/NuGet.assets.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/obj/NuGet.csproj.nuget.dgspec.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/obj/NuGet.csproj.nuget.g.props" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/obj/NuGet.csproj.nuget.g.targets" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/obj/project.assets.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/obj/project.nuget.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/obj/project.packagespec.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/NuGet/obj/rider.project.restore.info" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/Entity.csproj" beforeDir="false" afterPath="$PROJECT_DIR$/Server/Entity/Entity.csproj" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/Generate/CustomExport/SceneType.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/Generate/NetworkProtocol/InnerMessage.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/Generate/NetworkProtocol/InnerOpcode.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/Generate/NetworkProtocol/OuterMessage.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/Generate/NetworkProtocol/OuterOpcode.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/Generate/NetworkProtocol/RouteType.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/Model/Addressable/Unit.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/Model/Map/AOI/AOIComponent.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/Model/Map/AOI/Cell/AOICell.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/Model/Map/MapComponent.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/Model/RouteMessage/ChatUnit.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/Model/Unit/RoleUnit.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/bin/Debug/net8.0/Entity.deps.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/bin/Debug/net8.0/Entity.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/bin/Debug/net8.0/Entity.pdb" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/obj/Debug/net8.0/Entity.AssemblyInfo.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/obj/Debug/net8.0/Entity.AssemblyInfoInputs.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/obj/Debug/net8.0/Entity.GeneratedMSBuildEditorConfig.editorconfig" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/obj/Debug/net8.0/Entity.GlobalUsings.g.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/obj/Debug/net8.0/Entity.assets.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/obj/Debug/net8.0/Entity.csproj.AssemblyReference.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/obj/Debug/net8.0/Entity.csproj.CoreCompileInputs.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/obj/Debug/net8.0/Entity.csproj.FileListAbsolute.txt" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/obj/Debug/net8.0/Entity.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/obj/Debug/net8.0/Entity.pdb" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/obj/Debug/net8.0/ref/Entity.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/obj/Debug/net8.0/refint/Entity.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/obj/Entity.csproj.nuget.dgspec.json" beforeDir="false" afterPath="$PROJECT_DIR$/Server/Entity/obj/Entity.csproj.nuget.dgspec.json" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/obj/Entity.csproj.nuget.g.props" beforeDir="false" afterPath="$PROJECT_DIR$/Server/Entity/obj/Entity.csproj.nuget.g.props" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/obj/project.assets.json" beforeDir="false" afterPath="$PROJECT_DIR$/Server/Entity/obj/project.assets.json" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/obj/project.nuget.cache" beforeDir="false" afterPath="$PROJECT_DIR$/Server/Entity/obj/project.nuget.cache" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/obj/project.packagespec.json" beforeDir="false" afterPath="$PROJECT_DIR$/Server/Entity/obj/project.packagespec.json" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/obj/rider.project.model.nuget.info" beforeDir="false" afterPath="$PROJECT_DIR$/Server/Entity/obj/rider.project.model.nuget.info" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Entity/obj/rider.project.restore.info" beforeDir="false" afterPath="$PROJECT_DIR$/Server/Entity/obj/rider.project.restore.info" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/Hotfix.csproj" beforeDir="false" afterPath="$PROJECT_DIR$/Server/Hotfix/Hotfix.csproj" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/OnCreateScene_Init.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/Outer/Map/Handler/C2G_TestMessageHandler.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/Outer/Map/Helper/MapHelper.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/Outer/Map/MapComponentSystem.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/Outer/Map/System/AOIComponentSystem.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/bin/Debug/net8.0/Entity.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/bin/Debug/net8.0/Entity.pdb" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/bin/Debug/net8.0/Hotfix.deps.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/bin/Debug/net8.0/Hotfix.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/bin/Debug/net8.0/Hotfix.pdb" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/obj/Debug/net8.0/Hotfix.AssemblyInfo.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/obj/Debug/net8.0/Hotfix.AssemblyInfoInputs.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/obj/Debug/net8.0/Hotfix.GeneratedMSBuildEditorConfig.editorconfig" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/obj/Debug/net8.0/Hotfix.GlobalUsings.g.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/obj/Debug/net8.0/Hotfix.assets.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/obj/Debug/net8.0/Hotfix.csproj.AssemblyReference.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/obj/Debug/net8.0/Hotfix.csproj.CoreCompileInputs.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/obj/Debug/net8.0/Hotfix.csproj.FileListAbsolute.txt" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/obj/Debug/net8.0/Hotfix.csproj.Up2Date" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/obj/Debug/net8.0/Hotfix.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/obj/Debug/net8.0/Hotfix.pdb" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/obj/Debug/net8.0/ref/Hotfix.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/obj/Debug/net8.0/refint/Hotfix.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/obj/Hotfix.csproj.nuget.dgspec.json" beforeDir="false" afterPath="$PROJECT_DIR$/Server/Hotfix/obj/Hotfix.csproj.nuget.dgspec.json" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/obj/Hotfix.csproj.nuget.g.props" beforeDir="false" afterPath="$PROJECT_DIR$/Server/Hotfix/obj/Hotfix.csproj.nuget.g.props" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/obj/project.assets.json" beforeDir="false" afterPath="$PROJECT_DIR$/Server/Hotfix/obj/project.assets.json" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/obj/project.nuget.cache" beforeDir="false" afterPath="$PROJECT_DIR$/Server/Hotfix/obj/project.nuget.cache" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/obj/project.packagespec.json" beforeDir="false" afterPath="$PROJECT_DIR$/Server/Hotfix/obj/project.packagespec.json" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/obj/rider.project.model.nuget.info" beforeDir="false" afterPath="$PROJECT_DIR$/Server/Hotfix/obj/rider.project.model.nuget.info" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Hotfix/obj/rider.project.restore.info" beforeDir="false" afterPath="$PROJECT_DIR$/Server/Hotfix/obj/rider.project.restore.info" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/.idea/.idea.Main.dir/.idea/.gitignore" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/.idea/.idea.Main.dir/.idea/encodings.xml" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/.idea/.idea.Main.dir/.idea/indexLayout.xml" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/.idea/.idea.Main.dir/.idea/vcs.xml" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/Main.csproj" beforeDir="false" afterPath="$PROJECT_DIR$/Server/Main/Main.csproj" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/NLog.config" beforeDir="false" afterPath="$PROJECT_DIR$/Server/Main/NLog.config" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/Properties/launchSettings.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/AWSSDK.Core.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/AWSSDK.SecurityToken.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/CommandLine.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/DnsClient.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/Entity.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/Entity.pdb" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/Fantasy-Net.NLog.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/Fantasy-Net.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/Hotfix.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/Hotfix.pdb" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/Main.deps.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/Main.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/Main.exe" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/Main.pdb" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/Main.runtimeconfig.json" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/MongoDB.Bson.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/MongoDB.Driver.Core.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/MongoDB.Driver.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/MongoDB.Libmongocrypt.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/NLog.config" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/NLog.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/NLog.xsd" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/Newtonsoft.Json.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/SharpCompress.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/Snappier.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/ZstdSharp.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/protobuf-net.Core.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/protobuf-net.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/runtimes/linux/native/libmongocrypt.so" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/runtimes/osx/native/libmongocrypt.dylib" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/bin/Debug/net8.0/runtimes/win/native/mongocrypt.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/obj/Debug/net8.0/Main.AssemblyInfo.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/obj/Debug/net8.0/Main.AssemblyInfoInputs.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/obj/Debug/net8.0/Main.GeneratedMSBuildEditorConfig.editorconfig" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/obj/Debug/net8.0/Main.GlobalUsings.g.cs" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/obj/Debug/net8.0/Main.assets.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/obj/Debug/net8.0/Main.csproj.AssemblyReference.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/obj/Debug/net8.0/Main.csproj.CoreCompileInputs.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/obj/Debug/net8.0/Main.csproj.FileListAbsolute.txt" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/obj/Debug/net8.0/Main.csproj.Up2Date" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/obj/Debug/net8.0/Main.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/obj/Debug/net8.0/Main.genruntimeconfig.cache" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/obj/Debug/net8.0/Main.pdb" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/obj/Debug/net8.0/apphost.exe" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/obj/Debug/net8.0/ref/Main.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/obj/Debug/net8.0/refint/Main.dll" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/obj/Main.csproj.nuget.dgspec.json" beforeDir="false" afterPath="$PROJECT_DIR$/Server/Main/obj/Main.csproj.nuget.dgspec.json" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/obj/Main.csproj.nuget.g.props" beforeDir="false" afterPath="$PROJECT_DIR$/Server/Main/obj/Main.csproj.nuget.g.props" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/obj/project.assets.json" beforeDir="false" afterPath="$PROJECT_DIR$/Server/Main/obj/project.assets.json" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/obj/project.nuget.cache" beforeDir="false" afterPath="$PROJECT_DIR$/Server/Main/obj/project.nuget.cache" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/obj/project.packagespec.json" beforeDir="false" afterPath="$PROJECT_DIR$/Server/Main/obj/project.packagespec.json" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/obj/rider.project.model.nuget.info" beforeDir="false" afterPath="$PROJECT_DIR$/Server/Main/obj/rider.project.model.nuget.info" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Server/Main/obj/rider.project.restore.info" beforeDir="false" afterPath="$PROJECT_DIR$/Server/Main/obj/rider.project.restore.info" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Tools/ConfigTable/ExporterSettings.json" beforeDir="false" afterPath="$PROJECT_DIR$/Tools/ConfigTable/ExporterSettings.json" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/Tools/NetworkProtocol/ExporterSettings.json" beforeDir="false" afterPath="$PROJECT_DIR$/Tools/NetworkProtocol/ExporterSettings.json" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/使用说明.txt" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/../TE_AR/Assets/GameScripts/HotFix/GameLogic/RPG/GamePlay/Server/Handler.meta" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/../TE_AR/Assets/Plugins/MeshBaker/Examples/CharacterCustomization/CharacterCustomization - Shortcut.lnk.meta" beforeDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/../TE_AR/Assets/XR/Settings/OpenXR Package Settings.asset" beforeDir="false" afterPath="$PROJECT_DIR$/../TE_AR/Assets/XR/Settings/OpenXR Package Settings.asset" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/../TE_AR/ProjectSettings/ProjectSettings.asset" beforeDir="false" afterPath="$PROJECT_DIR$/../TE_AR/ProjectSettings/ProjectSettings.asset" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/../TE_AR/ProjectSettings/ShaderGraphSettings.asset" beforeDir="false" afterPath="$PROJECT_DIR$/../TE_AR/ProjectSettings/ShaderGraphSettings.asset" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/../TE_AR/UserSettings/Layouts/default-6000.dwlt" beforeDir="false" afterPath="$PROJECT_DIR$/../TE_AR/UserSettings/Layouts/default-6000.dwlt" afterDir="false" />
|
||||
</list>
|
||||
<option name="SHOW_DIALOG" value="false" />
|
||||
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
||||
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
||||
<option name="LAST_RESOLUTION" value="IGNORE" />
|
||||
</component>
|
||||
<component name="Git.Settings">
|
||||
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$/.." />
|
||||
</component>
|
||||
<component name="HighlightingSettingsPerFile">
|
||||
<setting file="file://$PROJECT_DIR$/APlugins/AssemblyHelper.cs" root0="FORCE_HIGHLIGHTING" />
|
||||
</component>
|
||||
<component name="ProblemsViewState">
|
||||
<option name="selectedTabId" value="Toolset" />
|
||||
</component>
|
||||
<component name="ProjectColorInfo">{
|
||||
"customColor": "",
|
||||
"associatedIndex": 3
|
||||
}</component>
|
||||
<component name="ProjectId" id="2riOhFtLwdKXXt7NVTxuXzYs1cE" />
|
||||
<component name="ProjectViewState">
|
||||
<option name="hideEmptyMiddlePackages" value="true" />
|
||||
<option name="showLibraryContents" value="true" />
|
||||
</component>
|
||||
<component name="PropertiesComponent">{
|
||||
"keyToString": {
|
||||
"RunOnceActivity.ShowReadmeOnStart": "true",
|
||||
"git-widget-placeholder": "main",
|
||||
"node.js.detected.package.eslint": "true",
|
||||
"node.js.detected.package.tslint": "true",
|
||||
"node.js.selected.package.eslint": "(autodetect)",
|
||||
"node.js.selected.package.tslint": "(autodetect)",
|
||||
"nodejs_package_manager_path": "npm",
|
||||
"vue.rearranger.settings.migration": "true"
|
||||
},
|
||||
"keyToStringList": {
|
||||
"rider.external.source.directories": [
|
||||
"C:\\Users\\Administrator\\AppData\\Roaming\\JetBrains\\Rider2024.1\\resharper-host\\DecompilerCache",
|
||||
"C:\\Users\\Administrator\\AppData\\Roaming\\JetBrains\\Rider2024.1\\resharper-host\\SourcesCache",
|
||||
"C:\\Users\\Administrator\\AppData\\Local\\Symbols\\src"
|
||||
]
|
||||
}
|
||||
}</component>
|
||||
<component name="RunManager">
|
||||
<configuration name="Main" type="DotNetProject" factoryName=".NET Project">
|
||||
<option name="EXE_PATH" value="" />
|
||||
<option name="PROGRAM_PARAMETERS" value="" />
|
||||
<option name="WORKING_DIRECTORY" value="" />
|
||||
<option name="PASS_PARENT_ENVS" value="1" />
|
||||
<option name="USE_EXTERNAL_CONSOLE" value="0" />
|
||||
<option name="USE_MONO" value="0" />
|
||||
<option name="RUNTIME_ARGUMENTS" value="" />
|
||||
<option name="PROJECT_PATH" value="$PROJECT_DIR$/Main/Main.csproj" />
|
||||
<option name="PROJECT_EXE_PATH_TRACKING" value="1" />
|
||||
<option name="PROJECT_ARGUMENTS_TRACKING" value="1" />
|
||||
<option name="PROJECT_WORKING_DIRECTORY_TRACKING" value="1" />
|
||||
<option name="PROJECT_KIND" value="DotNetCore" />
|
||||
<option name="PROJECT_TFM" value="" />
|
||||
<method v="2">
|
||||
<option name="Build" />
|
||||
</method>
|
||||
</configuration>
|
||||
</component>
|
||||
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
|
||||
<component name="TaskManager">
|
||||
<task active="true" id="Default" summary="Default task">
|
||||
<changelist id="6d3413b7-5b49-4a29-a0c2-bf3c0dd9199e" name="Changes" comment="" />
|
||||
<created>1737038547277</created>
|
||||
<option name="number" value="Default" />
|
||||
<option name="presentableId" value="Default" />
|
||||
<updated>1737038547277</updated>
|
||||
<workItem from="1737038548465" duration="475000" />
|
||||
<workItem from="1737039068091" duration="138000" />
|
||||
<workItem from="1737039211966" duration="41000" />
|
||||
</task>
|
||||
<servers />
|
||||
</component>
|
||||
<component name="TypeScriptGeneratedFilesManager">
|
||||
<option name="version" value="3" />
|
||||
</component>
|
||||
<component name="UnityProjectConfiguration" hasMinimizedUI="false" />
|
||||
<component name="VcsManagerConfiguration">
|
||||
<option name="CLEAR_INITIAL_COMMIT_MESSAGE" value="true" />
|
||||
</component>
|
||||
</project>
|
@ -0,0 +1,14 @@
|
||||
2025-03-31 17:00:46.1572 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-03-31 17:00:46.4719 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-03-31 17:00:46.8310 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-03-31 17:00:47.1807 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-03-31 17:02:09.5251 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-03-31 17:02:10.0936 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-03-31 17:02:10.1109 (GameAccountManageComponentSystem.cs:91) Gate 当前缓存中的 SessionID 2589189449237659648
|
||||
2025-03-31 17:02:10.1109 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589189449237659648 AccountId:116299279127281665
|
||||
2025-03-31 17:02:10.1260 (GateLoginHelper.cs:29) 聊天服务器登录成功
|
||||
2025-03-31 17:02:10.2692 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-03-31 17:02:15.5268 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
||||
2025-03-31 17:02:20.1507 (GameAccountSystem.cs:29) Gate gameAccount 下线前 保存数据到 数据库中
|
||||
2025-03-31 17:02:20.2368 (GameAccountSystem.cs:29) Gate gameAccount 下线前 保存数据到 数据库中
|
||||
2025-03-31 17:02:20.2368 (EntityTimeOutComponentSystem.cs:52) session : 0 Dispose
|
@ -0,0 +1,15 @@
|
||||
2025-03-31 17:00:45.3401 初始化序列化器成功,数量为:2
|
||||
2025-03-31 17:00:45.8794 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001
|
||||
2025-03-31 17:00:46.0745 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:21001
|
||||
2025-03-31 17:00:46.1572 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-03-31 17:00:46.2787 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11002
|
||||
2025-03-31 17:00:46.4719 SceneConfigId = 1002 networkTarget = Outer KCPServer Listen 127.0.0.1:21002
|
||||
2025-03-31 17:00:46.4719 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-03-31 17:00:46.6685 SceneConfigId = 1010 networkTarget = Inner TCPServer Listen 127.0.0.1:11010
|
||||
2025-03-31 17:00:46.8310 SceneConfigId = 1010 networkTarget = Outer KCPServer Listen 127.0.0.1:21010
|
||||
2025-03-31 17:00:47.0177 SceneConfigId = 1011 networkTarget = Inner TCPServer Listen 127.0.0.1:11011
|
||||
2025-03-31 17:00:47.1807 SceneConfigId = 1011 networkTarget = Outer KCPServer Listen 127.0.0.1:21011
|
||||
2025-03-31 17:00:47.3679 SceneConfigId = 1026 networkTarget = Inner TCPServer Listen 127.0.0.1:11026
|
||||
2025-03-31 17:00:47.5466 SceneConfigId = 1026 networkTarget = Outer TCPServer Listen 127.0.0.1:21016
|
||||
2025-03-31 17:00:47.5466 Process:1 Startup Complete SceneCount:5
|
||||
2025-03-31 17:02:10.1109 (G2Chat_LoginRequestHandler.cs:11) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589189449237659648
|
@ -0,0 +1,2 @@
|
||||
2025-03-31 17:02:10.0936 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
||||
2025-03-31 17:02:50.2889 session timeout id:132665183960301570 timeNow:1743411770288 _session.LastReceiveTime:1743411760209 _timeOut:8000
|
@ -0,0 +1,63 @@
|
||||
2025-04-02 13:41:56.4350 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-02 13:41:56.8252 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-02 13:41:57.2455 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-02 13:41:57.6834 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-02 13:42:30.5078 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-02 13:42:31.1287 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-02 13:42:31.1570 (GameAccountManageComponentSystem.cs:91) Gate 当前缓存中的 SessionID 2589079498074882048
|
||||
2025-04-02 13:42:31.1570 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589079498074882048 AccountId:116299279127281665
|
||||
2025-04-02 13:42:31.3458 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-02 13:42:36.5175 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
||||
2025-04-02 13:42:41.2345 (GameAccountSystem.cs:29) Gate gameAccount 下线前 保存数据到 数据库中
|
||||
2025-04-02 13:42:41.3432 (GameAccountSystem.cs:29) Gate gameAccount 下线前 保存数据到 数据库中
|
||||
2025-04-02 13:42:41.3432 (EntityTimeOutComponentSystem.cs:52) session : 0 Dispose
|
||||
2025-04-02 13:50:13.4173 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-02 13:50:13.5916 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-02 13:50:13.6060 (GameAccountManageComponentSystem.cs:91) Gate 当前缓存中的 SessionID 2590097645842202624
|
||||
2025-04-02 13:50:13.6060 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2590097645842202624 AccountId:116299279127281665
|
||||
2025-04-02 13:50:13.7916 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-02 13:50:19.4316 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
||||
2025-04-02 13:50:23.6553 (GameAccountSystem.cs:29) Gate gameAccount 下线前 保存数据到 数据库中
|
||||
2025-04-02 13:50:23.6709 (GameAccountSystem.cs:29) Gate gameAccount 下线前 保存数据到 数据库中
|
||||
2025-04-02 13:50:23.6709 (EntityTimeOutComponentSystem.cs:52) session : 0 Dispose
|
||||
2025-04-02 13:50:55.3332 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-02 13:50:55.4900 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-02 13:50:55.5046 (GameAccountManageComponentSystem.cs:91) Gate 当前缓存中的 SessionID 2590190004818935808
|
||||
2025-04-02 13:50:55.5046 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2590190004818935808 AccountId:116299279127281665
|
||||
2025-04-02 13:50:55.6789 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-02 13:51:01.3336 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
||||
2025-04-02 13:51:05.5539 (GameAccountSystem.cs:29) Gate gameAccount 下线前 保存数据到 数据库中
|
||||
2025-04-02 13:51:05.5693 (GameAccountSystem.cs:29) Gate gameAccount 下线前 保存数据到 数据库中
|
||||
2025-04-02 13:51:05.5693 (EntityTimeOutComponentSystem.cs:52) session : 0 Dispose
|
||||
2025-04-02 13:54:09.9398 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-02 13:54:10.3365 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-02 13:54:10.7633 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-02 13:54:11.1712 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-02 13:54:47.4816 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-02 13:54:47.7243 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-02 13:54:47.7519 (GameAccountManageComponentSystem.cs:91) Gate 当前缓存中的 SessionID 2589086095144648704
|
||||
2025-04-02 13:54:47.7519 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589086095144648704 AccountId:116299279127281665
|
||||
2025-04-02 13:54:47.9107 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-02 13:54:53.4840 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
||||
2025-04-02 13:54:57.7908 (GameAccountSystem.cs:29) Gate gameAccount 下线前 保存数据到 数据库中
|
||||
2025-04-02 13:54:57.8632 (GameAccountSystem.cs:29) Gate gameAccount 下线前 保存数据到 数据库中
|
||||
2025-04-02 13:54:57.8632 (EntityTimeOutComponentSystem.cs:52) session : 0 Dispose
|
||||
2025-04-02 13:56:38.1665 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-02 13:56:38.7117 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-02 13:56:39.1181 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-02 13:56:39.5632 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-02 13:56:52.6269 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-02 13:56:52.8846 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-02 13:56:52.9093 (GameAccountManageComponentSystem.cs:91) Gate 当前缓存中的 SessionID 2589035517609771008
|
||||
2025-04-02 13:56:52.9093 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589035517609771008 AccountId:116299279127281665
|
||||
2025-04-02 13:56:53.0992 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-02 13:56:58.6411 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
||||
2025-04-02 13:59:44.0458 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-02 13:59:44.2333 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-02 13:59:44.2333 (GameAccountManageComponentSystem.cs:68) Gate account already exists(账号已存在缓存中)
|
||||
2025-04-02 13:59:44.2333 (GameAccountManageComponentSystem.cs:74) Gate 检测当前帐号和当前Session 不是同一个,2589035517609771008,$2589413749609725952
|
||||
2025-04-02 13:59:44.2333 (GameAccountManageComponentSystem.cs:91) Gate 当前缓存中的 SessionID 2589413749609725952
|
||||
2025-04-02 13:59:44.2333 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589413749609725952 AccountId:116299279127281665
|
||||
2025-04-02 13:59:44.2805 (GameAccountManageComponentSystem.cs:120) Gate 已经存在了销毁组件
|
||||
2025-04-02 13:59:44.4205 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-02 13:59:50.0590 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
@ -0,0 +1,20 @@
|
||||
2025-04-02 13:42:32.9004 System.Exception: OuterMessageScheduler CustomRouteType session does not have an routeComponent component
|
||||
at Fantasy.Scheduler.OuterMessageScheduler.Scheduler(Session session, APackInfo packInfo)
|
||||
at Fantasy.Async.FTask.InnerCoroutine()
|
||||
at Fantasy.Async.FTask.InnerCoroutine()
|
||||
at Fantasy.Network.Session.Receive(APackInfo packInfo)
|
||||
2025-04-02 13:50:18.9664 System.Exception: OuterMessageScheduler CustomRouteType session does not have an routeComponent component
|
||||
at Fantasy.Scheduler.OuterMessageScheduler.Scheduler(Session session, APackInfo packInfo)
|
||||
at Fantasy.Async.FTask.InnerCoroutine()
|
||||
at Fantasy.Async.FTask.InnerCoroutine()
|
||||
at Fantasy.Network.Session.Receive(APackInfo packInfo)
|
||||
2025-04-02 13:55:01.7187 System.Exception: OuterMessageScheduler CustomRouteType session does not have an routeComponent component
|
||||
at Fantasy.Scheduler.OuterMessageScheduler.Scheduler(Session session, APackInfo packInfo)
|
||||
at Fantasy.Async.FTask.InnerCoroutine()
|
||||
at Fantasy.Async.FTask.InnerCoroutine()
|
||||
at Fantasy.Network.Session.Receive(APackInfo packInfo)
|
||||
2025-04-02 13:57:01.6086 System.Exception: OuterMessageScheduler CustomRouteType session does not have an routeComponent component
|
||||
at Fantasy.Scheduler.OuterMessageScheduler.Scheduler(Session session, APackInfo packInfo)
|
||||
at Fantasy.Async.FTask.InnerCoroutine()
|
||||
at Fantasy.Async.FTask.InnerCoroutine()
|
||||
at Fantasy.Network.Session.Receive(APackInfo packInfo)
|
@ -0,0 +1,48 @@
|
||||
2025-04-02 13:41:55.3716 初始化序列化器成功,数量为:2
|
||||
2025-04-02 13:41:56.0961 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001
|
||||
2025-04-02 13:41:56.3272 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:21001
|
||||
2025-04-02 13:41:56.4350 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-02 13:41:56.5922 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11002
|
||||
2025-04-02 13:41:56.8252 SceneConfigId = 1002 networkTarget = Outer KCPServer Listen 127.0.0.1:21002
|
||||
2025-04-02 13:41:56.8252 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-02 13:41:57.0500 SceneConfigId = 1010 networkTarget = Inner TCPServer Listen 127.0.0.1:11010
|
||||
2025-04-02 13:41:57.2455 SceneConfigId = 1010 networkTarget = Outer KCPServer Listen 127.0.0.1:21010
|
||||
2025-04-02 13:41:57.4742 SceneConfigId = 1011 networkTarget = Inner TCPServer Listen 127.0.0.1:11011
|
||||
2025-04-02 13:41:57.6834 SceneConfigId = 1011 networkTarget = Outer KCPServer Listen 127.0.0.1:21011
|
||||
2025-04-02 13:41:57.9084 SceneConfigId = 1026 networkTarget = Inner TCPServer Listen 127.0.0.1:11026
|
||||
2025-04-02 13:41:58.1278 SceneConfigId = 1026 networkTarget = Outer TCPServer Listen 127.0.0.1:21016
|
||||
2025-04-02 13:41:58.1278 Process:1 Startup Complete SceneCount:5
|
||||
2025-04-02 13:42:31.1749 (G2Chat_LoginRequestHandler.cs:16) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589079498074882048
|
||||
2025-04-02 13:50:13.6216 (G2Chat_LoginRequestHandler.cs:16) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2590097645842202624
|
||||
2025-04-02 13:50:55.5211 (G2Chat_LoginRequestHandler.cs:16) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2590190004818935808
|
||||
2025-04-02 13:54:09.0954 初始化序列化器成功,数量为:2
|
||||
2025-04-02 13:54:09.7432 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001
|
||||
2025-04-02 13:54:09.9266 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:21001
|
||||
2025-04-02 13:54:09.9398 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-02 13:54:10.1454 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11002
|
||||
2025-04-02 13:54:10.3365 SceneConfigId = 1002 networkTarget = Outer KCPServer Listen 127.0.0.1:21002
|
||||
2025-04-02 13:54:10.3365 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-02 13:54:10.5651 SceneConfigId = 1010 networkTarget = Inner TCPServer Listen 127.0.0.1:11010
|
||||
2025-04-02 13:54:10.7633 SceneConfigId = 1010 networkTarget = Outer KCPServer Listen 127.0.0.1:21010
|
||||
2025-04-02 13:54:10.9782 SceneConfigId = 1011 networkTarget = Inner TCPServer Listen 127.0.0.1:11011
|
||||
2025-04-02 13:54:11.1712 SceneConfigId = 1011 networkTarget = Outer KCPServer Listen 127.0.0.1:21011
|
||||
2025-04-02 13:54:11.4010 SceneConfigId = 1026 networkTarget = Inner TCPServer Listen 127.0.0.1:11026
|
||||
2025-04-02 13:54:11.6146 SceneConfigId = 1026 networkTarget = Outer TCPServer Listen 127.0.0.1:21016
|
||||
2025-04-02 13:54:11.6146 Process:1 Startup Complete SceneCount:5
|
||||
2025-04-02 13:54:47.7636 (G2Chat_LoginRequestHandler.cs:17) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589086095144648704
|
||||
2025-04-02 13:56:37.0646 初始化序列化器成功,数量为:2
|
||||
2025-04-02 13:56:37.8792 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001
|
||||
2025-04-02 13:56:38.1452 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:21001
|
||||
2025-04-02 13:56:38.1665 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-02 13:56:38.4628 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11002
|
||||
2025-04-02 13:56:38.7117 SceneConfigId = 1002 networkTarget = Outer KCPServer Listen 127.0.0.1:21002
|
||||
2025-04-02 13:56:38.7117 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-02 13:56:38.9304 SceneConfigId = 1010 networkTarget = Inner TCPServer Listen 127.0.0.1:11010
|
||||
2025-04-02 13:56:39.1181 SceneConfigId = 1010 networkTarget = Outer KCPServer Listen 127.0.0.1:21010
|
||||
2025-04-02 13:56:39.3678 SceneConfigId = 1011 networkTarget = Inner TCPServer Listen 127.0.0.1:11011
|
||||
2025-04-02 13:56:39.5632 SceneConfigId = 1011 networkTarget = Outer KCPServer Listen 127.0.0.1:21011
|
||||
2025-04-02 13:56:39.7691 SceneConfigId = 1026 networkTarget = Inner TCPServer Listen 127.0.0.1:11026
|
||||
2025-04-02 13:56:39.9746 SceneConfigId = 1026 networkTarget = Outer TCPServer Listen 127.0.0.1:21016
|
||||
2025-04-02 13:56:39.9746 Process:1 Startup Complete SceneCount:5
|
||||
2025-04-02 13:56:52.9277 (G2Chat_LoginRequestHandler.cs:17) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589035517609771008
|
||||
2025-04-02 13:59:44.2479 (G2Chat_LoginRequestHandler.cs:17) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589413749609725952
|
@ -0,0 +1,6 @@
|
||||
2025-04-02 13:42:31.1287 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
||||
2025-04-02 13:50:13.5916 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
||||
2025-04-02 13:50:55.4900 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
||||
2025-04-02 13:54:47.7243 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
||||
2025-04-02 13:56:52.8846 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
||||
2025-04-02 13:59:44.2333 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
@ -0,0 +1,31 @@
|
||||
2025-04-02 14:01:52.9745 (GameAccountSystem.cs:29) Gate gameAccount 下线前 保存数据到 数据库中
|
||||
2025-04-02 14:01:53.0686 (GameAccountSystem.cs:29) Gate gameAccount 下线前 保存数据到 数据库中
|
||||
2025-04-02 14:01:53.0701 (EntityTimeOutComponentSystem.cs:52) session : 0 Dispose
|
||||
2025-04-02 14:02:25.3077 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-02 14:02:25.4630 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-02 14:02:25.4630 (GameAccountManageComponentSystem.cs:91) Gate 当前缓存中的 SessionID 2589767792353869824
|
||||
2025-04-02 14:02:25.4630 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589767792353869824 AccountId:116299279127281665
|
||||
2025-04-02 14:02:25.6276 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-02 14:02:31.3079 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
||||
2025-04-02 14:03:53.3827 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-02 14:03:53.5517 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-02 14:03:53.5517 (GameAccountManageComponentSystem.cs:68) Gate account already exists(账号已存在缓存中)
|
||||
2025-04-02 14:03:53.5517 (GameAccountManageComponentSystem.cs:74) Gate 检测当前帐号和当前Session 不是同一个,2589767792353869824,$2589961306400358400
|
||||
2025-04-02 14:03:53.5517 (GameAccountManageComponentSystem.cs:91) Gate 当前缓存中的 SessionID 2589961306400358400
|
||||
2025-04-02 14:03:53.5517 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589961306400358400 AccountId:116299279127281665
|
||||
2025-04-02 14:03:53.5986 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-02 14:03:59.3836 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
||||
2025-04-02 14:04:01.1342 (GameAccountManageComponentSystem.cs:120) Gate 已经存在了销毁组件
|
||||
2025-04-02 14:06:54.2586 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-02 14:06:54.6631 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-02 14:06:55.0707 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-02 14:06:55.4956 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-02 14:07:04.2879 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-02 14:07:04.5229 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-02 14:07:04.5478 (GameAccountManageComponentSystem.cs:91) Gate 当前缓存中的 SessionID 2589026721516748800
|
||||
2025-04-02 14:07:04.5478 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589026721516748800 AccountId:116299279127281665
|
||||
2025-04-02 14:07:04.5848 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-02 14:07:10.2889 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
||||
2025-04-02 14:12:29.5101 (GameAccountSystem.cs:29) Gate gameAccount 下线前 保存数据到 数据库中
|
||||
2025-04-02 14:12:29.5875 (GameAccountSystem.cs:29) Gate gameAccount 下线前 保存数据到 数据库中
|
||||
2025-04-02 14:12:29.5875 (EntityTimeOutComponentSystem.cs:52) session : 0 Dispose
|
@ -0,0 +1,24 @@
|
||||
2025-04-02 14:02:35.9291 System.Exception: OuterMessageScheduler CustomRouteType session does not have an routeComponent component
|
||||
at Fantasy.Scheduler.OuterMessageScheduler.Scheduler(Session session, APackInfo packInfo)
|
||||
at Fantasy.Async.FTask.InnerCoroutine()
|
||||
at Fantasy.Async.FTask.InnerCoroutine()
|
||||
at Fantasy.Network.Session.Receive(APackInfo packInfo)
|
||||
2025-04-02 14:04:01.1342 CallInnerRoute routeId == 0
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.CallInnerRoute(Int64 routeId, Type requestType, APackInfo packInfo)
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.CallInnerRoute(Int64 routeId, Type requestType, APackInfo packInfo)
|
||||
at Fantasy.Scheduler.OuterMessageScheduler.Scheduler(Session session, APackInfo packInfo)
|
||||
at Fantasy.Network.Session.Receive(APackInfo packInfo)
|
||||
at Fantasy.Network.KCP.KCPServerNetworkChannel.Input(ReadOnlyMemory`1 buffer)
|
||||
at Fantasy.Network.KCP.KCPServerNetwork.ReadPipeDataAsync()
|
||||
at System.IO.Pipelines.Pipe.ExecuteWithoutExecutionContext(Object state)
|
||||
at Fantasy.ThreadSynchronizationContext.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-02 14:04:01.1342 System.NullReferenceException: Object reference not set to an instance of an object.
|
||||
at System.Object.GetType()
|
||||
at Fantasy.Network.Session.Send(IMessage message, UInt32 rpcId, Int64 routeId)
|
||||
at Fantasy.Scheduler.OuterMessageScheduler.Scheduler(Session session, APackInfo packInfo)
|
||||
at Fantasy.Async.FTask.InnerCoroutine()
|
||||
at Fantasy.Async.FTask.InnerCoroutine()
|
||||
at Fantasy.Network.Session.Receive(APackInfo packInfo)
|
@ -0,0 +1,18 @@
|
||||
2025-04-02 14:02:25.4630 (G2Chat_LoginRequestHandler.cs:17) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589767792353869824
|
||||
2025-04-02 14:03:53.5517 (G2Chat_LoginRequestHandler.cs:17) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589961306400358400
|
||||
2025-04-02 14:06:53.3342 初始化序列化器成功,数量为:2
|
||||
2025-04-02 14:06:54.0008 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001
|
||||
2025-04-02 14:06:54.2429 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:21001
|
||||
2025-04-02 14:06:54.2586 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-02 14:06:54.4624 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11002
|
||||
2025-04-02 14:06:54.6609 SceneConfigId = 1002 networkTarget = Outer KCPServer Listen 127.0.0.1:21002
|
||||
2025-04-02 14:06:54.6609 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-02 14:06:54.8813 SceneConfigId = 1010 networkTarget = Inner TCPServer Listen 127.0.0.1:11010
|
||||
2025-04-02 14:06:55.0685 SceneConfigId = 1010 networkTarget = Outer KCPServer Listen 127.0.0.1:21010
|
||||
2025-04-02 14:06:55.2964 SceneConfigId = 1011 networkTarget = Inner TCPServer Listen 127.0.0.1:11011
|
||||
2025-04-02 14:06:55.4956 SceneConfigId = 1011 networkTarget = Outer KCPServer Listen 127.0.0.1:21011
|
||||
2025-04-02 14:06:55.7100 SceneConfigId = 1026 networkTarget = Inner TCPServer Listen 127.0.0.1:11026
|
||||
2025-04-02 14:06:55.9173 SceneConfigId = 1026 networkTarget = Outer TCPServer Listen 127.0.0.1:21016
|
||||
2025-04-02 14:06:55.9173 Process:1 Startup Complete SceneCount:5
|
||||
2025-04-02 14:07:04.5595 (G2Chat_LoginRequestHandler.cs:19) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589026721516748800
|
||||
2025-04-02 14:07:07.6648 (C2Chat_TestRequestHandler.cs:11) chatUnitSnowShow AccountId:116299279127281665
|
@ -0,0 +1,5 @@
|
||||
2025-04-02 14:01:49.4619 session timeout id:135445814507208705 timeNow:1743573709461 _session.LastReceiveTime:1743573699090 _timeOut:8000
|
||||
2025-04-02 14:02:25.4630 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
||||
2025-04-02 14:03:53.5517 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
||||
2025-04-02 14:07:04.5229 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
||||
2025-04-02 14:07:29.4938 session timeout id:135453373649649664 timeNow:1743574049493 _session.LastReceiveTime:1743574038406 _timeOut:8000
|
@ -0,0 +1,10 @@
|
||||
2025-04-02 16:59:26.8261 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-02 16:59:27.2194 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-02 16:59:27.6185 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-02 16:59:28.0036 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-02 16:59:50.0545 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-02 16:59:50.2974 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-02 16:59:50.3233 (GameAccountManageComponentSystem.cs:102) Gate 当前缓存中的 SessionID 2589055308819070976
|
||||
2025-04-02 16:59:50.3233 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589055308819070976 AccountId:116299279127281665
|
||||
2025-04-02 16:59:50.3575 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-02 16:59:56.0574 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
@ -0,0 +1,18 @@
|
||||
2025-04-02 16:56:15.4982 System.ArgumentException: An item with the same key has already been added. Key: Fantasy.G2Chat_LoginRequest
|
||||
at System.Collections.Generic.Dictionary`2.TryInsert(TKey key, TValue value, InsertionBehavior behavior)
|
||||
at System.Collections.Generic.Dictionary`2.Add(TKey key, TValue value)
|
||||
at Fantasy.Network.Interface.MessageDispatcherComponent.LoadInner(Int64 assemblyIdentity)
|
||||
at Fantasy.Network.Interface.MessageDispatcherComponent.<>c__DisplayClass16_0.<Load>b__0()
|
||||
at Fantasy.ThreadSynchronizationContext.Update()
|
||||
2025-04-02 16:56:33.3541 System.ArgumentException: An item with the same key has already been added. Key: Fantasy.G2Chat_LoginRequest
|
||||
at System.Collections.Generic.Dictionary`2.TryInsert(TKey key, TValue value, InsertionBehavior behavior)
|
||||
at System.Collections.Generic.Dictionary`2.Add(TKey key, TValue value)
|
||||
at Fantasy.Network.Interface.MessageDispatcherComponent.LoadInner(Int64 assemblyIdentity)
|
||||
at Fantasy.Network.Interface.MessageDispatcherComponent.<>c__DisplayClass16_0.<Load>b__0()
|
||||
at Fantasy.ThreadSynchronizationContext.Update()
|
||||
2025-04-02 16:57:58.0473 System.ArgumentException: An item with the same key has already been added. Key: Fantasy.G2Chat_LoginRequest
|
||||
at System.Collections.Generic.Dictionary`2.TryInsert(TKey key, TValue value, InsertionBehavior behavior)
|
||||
at System.Collections.Generic.Dictionary`2.Add(TKey key, TValue value)
|
||||
at Fantasy.Network.Interface.MessageDispatcherComponent.LoadInner(Int64 assemblyIdentity)
|
||||
at Fantasy.Network.Interface.MessageDispatcherComponent.<>c__DisplayClass16_0.<Load>b__0()
|
||||
at Fantasy.ThreadSynchronizationContext.Update()
|
@ -0,0 +1,18 @@
|
||||
2025-04-02 16:56:15.4342 初始化序列化器成功,数量为:2
|
||||
2025-04-02 16:56:33.3030 初始化序列化器成功,数量为:2
|
||||
2025-04-02 16:57:57.9899 初始化序列化器成功,数量为:2
|
||||
2025-04-02 16:59:26.0246 初始化序列化器成功,数量为:2
|
||||
2025-04-02 16:59:26.5981 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001
|
||||
2025-04-02 16:59:26.8136 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:21001
|
||||
2025-04-02 16:59:26.8261 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-02 16:59:27.0291 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11002
|
||||
2025-04-02 16:59:27.2194 SceneConfigId = 1002 networkTarget = Outer KCPServer Listen 127.0.0.1:21002
|
||||
2025-04-02 16:59:27.2194 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-02 16:59:27.4309 SceneConfigId = 1010 networkTarget = Inner TCPServer Listen 127.0.0.1:11010
|
||||
2025-04-02 16:59:27.6160 SceneConfigId = 1010 networkTarget = Outer KCPServer Listen 127.0.0.1:21010
|
||||
2025-04-02 16:59:27.8212 SceneConfigId = 1011 networkTarget = Inner TCPServer Listen 127.0.0.1:11011
|
||||
2025-04-02 16:59:28.0036 SceneConfigId = 1011 networkTarget = Outer KCPServer Listen 127.0.0.1:21011
|
||||
2025-04-02 16:59:28.2123 SceneConfigId = 1026 networkTarget = Inner TCPServer Listen 127.0.0.1:11026
|
||||
2025-04-02 16:59:28.4153 SceneConfigId = 1026 networkTarget = Outer TCPServer Listen 127.0.0.1:21016
|
||||
2025-04-02 16:59:28.4153 Process:1 Startup Complete SceneCount:5
|
||||
2025-04-02 16:59:50.3361 (G2Chat_LoginRequestHandler.cs:19) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589055308819070976
|
@ -0,0 +1 @@
|
||||
2025-04-02 16:59:50.2974 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
@ -0,0 +1,36 @@
|
||||
2025-04-02 17:01:45.9357 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-02 17:01:46.3516 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-02 17:01:46.7610 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-02 17:01:47.1682 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-02 17:01:53.9070 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-02 17:01:54.1413 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-02 17:01:54.1677 (GameAccountManageComponentSystem.cs:102) Gate 当前缓存中的 SessionID 2589022323470237696
|
||||
2025-04-02 17:01:54.1677 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589022323470237696 AccountId:116299279127281665
|
||||
2025-04-02 17:01:54.2161 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-02 17:01:59.9082 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
||||
2025-04-02 17:07:26.4240 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-02 17:07:26.8215 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-02 17:07:27.2296 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-02 17:07:27.6696 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-02 17:08:09.7733 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-02 17:08:10.0083 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-02 17:08:10.0360 (GameAccountManageComponentSystem.cs:102) Gate 当前缓存中的 SessionID 2589099289284182016
|
||||
2025-04-02 17:08:10.0360 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589099289284182016 AccountId:116299279127281665
|
||||
2025-04-02 17:08:10.0743 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-02 17:08:15.7752 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
||||
2025-04-02 17:09:14.9881 (GameAccountSystem.cs:29) Gate gameAccount 下线前 保存数据到 数据库中
|
||||
2025-04-02 17:11:49.9873 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-02 17:11:50.4176 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-02 17:11:50.8359 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-02 17:11:51.2496 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-02 17:12:24.3154 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-02 17:12:24.5750 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-02 17:12:24.6011 (GameAccountManageComponentSystem.cs:102) Gate 当前缓存中的 SessionID 2589079498074882048
|
||||
2025-04-02 17:12:24.6011 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589079498074882048 AccountId:116299279127281665
|
||||
2025-04-02 17:12:24.6390 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-02 17:12:30.3167 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
||||
2025-04-02 17:12:54.5523 (GameAccountSystem.cs:29) Gate gameAccount 下线前 保存数据到 数据库中
|
||||
2025-04-02 17:12:54.6171 (G2Chat_OfflineRequestHandler.cs:11) chat : 聊天服务器SnowShow 下线
|
||||
2025-04-02 17:12:54.6171 (GateLoginHelper.cs:44) Gate : chat聊天服务器下线成功
|
||||
2025-04-02 17:12:54.6171 (GameAccountSystem.cs:29) Gate gameAccount 下线前 保存数据到 数据库中
|
||||
2025-04-02 17:12:54.6171 (EntityTimeOutComponentSystem.cs:52) session : 0 Dispose
|
@ -0,0 +1,31 @@
|
||||
2025-04-02 17:09:15.0026 Fantasy.Timer.TimerComponent Update Error MongoDB.Bson.BsonSerializationException: An error occurred while serializing the Routes field of class Fantasy.GameAccount: When using DictionaryRepresentation.Document key values must serialize as strings.
|
||||
---> MongoDB.Bson.BsonSerializationException: When using DictionaryRepresentation.Document key values must serialize as strings.
|
||||
at MongoDB.Bson.Serialization.Serializers.DictionarySerializerBase`3.SerializeKeyString(TKey key)
|
||||
at MongoDB.Bson.Serialization.Serializers.DictionarySerializerBase`3.SerializeDocumentRepresentation(BsonSerializationContext context, TDictionary value)
|
||||
at MongoDB.Bson.Serialization.Serializers.DictionarySerializerBase`3.SerializeValue(BsonSerializationContext context, BsonSerializationArgs args, TDictionary value)
|
||||
at MongoDB.Bson.Serialization.Serializers.ClassSerializerBase`1.Serialize(BsonSerializationContext context, BsonSerializationArgs args, TValue value)
|
||||
at MongoDB.Bson.Serialization.IBsonSerializerExtensions.Serialize(IBsonSerializer serializer, BsonSerializationContext context, Object value)
|
||||
at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.SerializeNormalMember(BsonSerializationContext context, Object obj, BsonMemberMap memberMap)
|
||||
at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.SerializeMember(BsonSerializationContext context, Object obj, BsonMemberMap memberMap)
|
||||
--- End of inner exception stack trace ---
|
||||
at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.SerializeMember(BsonSerializationContext context, Object obj, BsonMemberMap memberMap)
|
||||
at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.SerializeClass(BsonSerializationContext context, BsonSerializationArgs args, TClass document)
|
||||
at MongoDB.Bson.Serialization.BsonClassMapSerializer`1.Serialize(BsonSerializationContext context, BsonSerializationArgs args, TClass value)
|
||||
at MongoDB.Bson.BsonExtensionMethods.ToBson(Object obj, Type nominalType, BsonBinaryWriterSettings writerSettings, IBsonSerializer serializer, Action`1 configurator, BsonSerializationArgs args, Int32 estimatedBsonSize)
|
||||
at MongoDB.Bson.BsonExtensionMethods.ToBson[TNominalType](TNominalType obj, IBsonSerializer`1 serializer, BsonBinaryWriterSettings writerSettings, Action`1 configurator, BsonSerializationArgs args, Int32 estimatedBsonSize)
|
||||
at Fantasy.Serialize.BsonPackHelper.Serialize[T](T object)
|
||||
at Fantasy.Serialize.BsonPackHelper.Clone[T](T t)
|
||||
at Fantasy.DataBase.MongoDataBase.Save[T](T entity, String collection)
|
||||
at Hotfix.GameAccountSystem.SaveToDatabase(GameAccount self, Scene scene) in D:\UnityProject\EintooAR\GameServer\Server\Hotfix\Outter\Gate\GameAccount\GameAccountSystem.cs:line 12
|
||||
at Hotfix.GameAccountSystem.DisConnect(GameAccount self) in D:\UnityProject\EintooAR\GameServer\Server\Hotfix\Outter\Gate\GameAccount\GameAccountSystem.cs:line 30
|
||||
at Hotfix.EntityTimeOutComponentSystem.Handler(EntityTimeOutComponent self, Int64 parentRunTimeId, Func`1 callback) in D:\UnityProject\EintooAR\GameServer\Server\Hotfix\Outter\Entity\EntityTimeOutComponentSystem.cs:line 48
|
||||
at Fantasy.Async.FTask.InnerCoroutine()
|
||||
at Fantasy.Async.FTask.InnerCoroutine()
|
||||
at Hotfix.EntityTimeOutComponentSystem.<>c__DisplayClass2_0.<TimeOut>b__0() in D:\UnityProject\EintooAR\GameServer\Server\Hotfix\Outter\Entity\EntityTimeOutComponentSystem.cs:line 35
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
@ -0,0 +1,45 @@
|
||||
2025-04-02 17:01:45.0878 初始化序列化器成功,数量为:2
|
||||
2025-04-02 17:01:45.7153 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001
|
||||
2025-04-02 17:01:45.9191 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:21001
|
||||
2025-04-02 17:01:45.9357 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-02 17:01:46.1523 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11002
|
||||
2025-04-02 17:01:46.3495 SceneConfigId = 1002 networkTarget = Outer KCPServer Listen 127.0.0.1:21002
|
||||
2025-04-02 17:01:46.3516 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-02 17:01:46.5734 SceneConfigId = 1010 networkTarget = Inner TCPServer Listen 127.0.0.1:11010
|
||||
2025-04-02 17:01:46.7610 SceneConfigId = 1010 networkTarget = Outer KCPServer Listen 127.0.0.1:21010
|
||||
2025-04-02 17:01:46.9788 SceneConfigId = 1011 networkTarget = Inner TCPServer Listen 127.0.0.1:11011
|
||||
2025-04-02 17:01:47.1682 SceneConfigId = 1011 networkTarget = Outer KCPServer Listen 127.0.0.1:21011
|
||||
2025-04-02 17:01:47.3781 SceneConfigId = 1026 networkTarget = Inner TCPServer Listen 127.0.0.1:11026
|
||||
2025-04-02 17:01:47.5875 SceneConfigId = 1026 networkTarget = Outer TCPServer Listen 127.0.0.1:21016
|
||||
2025-04-02 17:01:47.5875 Process:1 Startup Complete SceneCount:5
|
||||
2025-04-02 17:01:54.1801 (G2Chat_LoginRequestHandler.cs:19) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589022323470237696
|
||||
2025-04-02 17:07:25.4986 初始化序列化器成功,数量为:2
|
||||
2025-04-02 17:07:26.1987 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001
|
||||
2025-04-02 17:07:26.4064 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:21001
|
||||
2025-04-02 17:07:26.4240 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-02 17:07:26.6285 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11002
|
||||
2025-04-02 17:07:26.8215 SceneConfigId = 1002 networkTarget = Outer KCPServer Listen 127.0.0.1:21002
|
||||
2025-04-02 17:07:26.8215 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-02 17:07:27.0385 SceneConfigId = 1010 networkTarget = Inner TCPServer Listen 127.0.0.1:11010
|
||||
2025-04-02 17:07:27.2296 SceneConfigId = 1010 networkTarget = Outer KCPServer Listen 127.0.0.1:21010
|
||||
2025-04-02 17:07:27.4622 SceneConfigId = 1011 networkTarget = Inner TCPServer Listen 127.0.0.1:11011
|
||||
2025-04-02 17:07:27.6696 SceneConfigId = 1011 networkTarget = Outer KCPServer Listen 127.0.0.1:21011
|
||||
2025-04-02 17:07:27.8931 SceneConfigId = 1026 networkTarget = Inner TCPServer Listen 127.0.0.1:11026
|
||||
2025-04-02 17:07:28.1026 SceneConfigId = 1026 networkTarget = Outer TCPServer Listen 127.0.0.1:21016
|
||||
2025-04-02 17:07:28.1026 Process:1 Startup Complete SceneCount:5
|
||||
2025-04-02 17:08:10.0492 (G2Chat_LoginRequestHandler.cs:19) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589099289284182016
|
||||
2025-04-02 17:11:49.1038 初始化序列化器成功,数量为:2
|
||||
2025-04-02 17:11:49.7598 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001
|
||||
2025-04-02 17:11:49.9717 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:21001
|
||||
2025-04-02 17:11:49.9873 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-02 17:11:50.2054 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11002
|
||||
2025-04-02 17:11:50.4176 SceneConfigId = 1002 networkTarget = Outer KCPServer Listen 127.0.0.1:21002
|
||||
2025-04-02 17:11:50.4176 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-02 17:11:50.6331 SceneConfigId = 1010 networkTarget = Inner TCPServer Listen 127.0.0.1:11010
|
||||
2025-04-02 17:11:50.8359 SceneConfigId = 1010 networkTarget = Outer KCPServer Listen 127.0.0.1:21010
|
||||
2025-04-02 17:11:51.0480 SceneConfigId = 1011 networkTarget = Inner TCPServer Listen 127.0.0.1:11011
|
||||
2025-04-02 17:11:51.2496 SceneConfigId = 1011 networkTarget = Outer KCPServer Listen 127.0.0.1:21011
|
||||
2025-04-02 17:11:51.4815 SceneConfigId = 1026 networkTarget = Inner TCPServer Listen 127.0.0.1:11026
|
||||
2025-04-02 17:11:51.7176 SceneConfigId = 1026 networkTarget = Outer TCPServer Listen 127.0.0.1:21016
|
||||
2025-04-02 17:11:51.7176 Process:1 Startup Complete SceneCount:5
|
||||
2025-04-02 17:12:24.6011 (G2Chat_LoginRequestHandler.cs:19) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589079498074882048
|
@ -0,0 +1,5 @@
|
||||
2025-04-02 17:01:54.1413 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
||||
2025-04-02 17:08:10.0083 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
||||
2025-04-02 17:09:04.9839 session timeout id:135640032928333824 timeNow:1743584944983 _session.LastReceiveTime:1743584933918 _timeOut:8000
|
||||
2025-04-02 17:12:24.5750 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
||||
2025-04-02 17:12:44.5477 session timeout id:135644413794975744 timeNow:1743585164547 _session.LastReceiveTime:1743585152426 _timeOut:8000
|
@ -0,0 +1,10 @@
|
||||
2025-04-10 18:02:13.2823 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-10 18:02:13.6510 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-10 18:02:14.1352 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-10 18:02:14.5962 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-10 18:03:13.9299 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-10 18:03:14.6191 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-10 18:03:14.6570 (GameAccountManageComponentSystem.cs:102) Gate 当前缓存中的 SessionID 2589138871702781952
|
||||
2025-04-10 18:03:14.6570 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589138871702781952 AccountId:116299279127281665
|
||||
2025-04-10 18:03:14.7414 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-10 18:03:19.9373 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
@ -0,0 +1,15 @@
|
||||
2025-04-10 18:02:12.0106 初始化序列化器成功,数量为:2
|
||||
2025-04-10 18:02:12.9102 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001
|
||||
2025-04-10 18:02:13.1372 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:21001
|
||||
2025-04-10 18:02:13.2823 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-10 18:02:13.4138 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11002
|
||||
2025-04-10 18:02:13.6510 SceneConfigId = 1002 networkTarget = Outer KCPServer Listen 127.0.0.1:21002
|
||||
2025-04-10 18:02:13.6510 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-10 18:02:13.9110 SceneConfigId = 1010 networkTarget = Inner TCPServer Listen 127.0.0.1:11010
|
||||
2025-04-10 18:02:14.1352 SceneConfigId = 1010 networkTarget = Outer KCPServer Listen 127.0.0.1:21010
|
||||
2025-04-10 18:02:14.3893 SceneConfigId = 1011 networkTarget = Inner TCPServer Listen 127.0.0.1:11011
|
||||
2025-04-10 18:02:14.5962 SceneConfigId = 1011 networkTarget = Outer KCPServer Listen 127.0.0.1:21011
|
||||
2025-04-10 18:02:14.8369 SceneConfigId = 1026 networkTarget = Inner TCPServer Listen 127.0.0.1:11026
|
||||
2025-04-10 18:02:15.0847 SceneConfigId = 1026 networkTarget = Outer TCPServer Listen 127.0.0.1:21016
|
||||
2025-04-10 18:02:15.0847 Process:1 Startup Complete SceneCount:5
|
||||
2025-04-10 18:03:14.6920 (G2Chat_LoginRequestHandler.cs:19) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589138871702781952
|
@ -0,0 +1,7 @@
|
||||
2025-04-10 18:03:14.6191 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
||||
2025-04-10 18:03:19.3288 Scene:738459648 Found Unhandled RouteMessage: Fantasy.C2Chat_BoardMessageRequest
|
||||
2025-04-10 18:03:33.2455 Scene:738459648 Found Unhandled RouteMessage: Fantasy.C2Chat_BoardMessageRequest
|
||||
2025-04-10 18:03:34.3330 Scene:738459648 Found Unhandled RouteMessage: Fantasy.C2Chat_BoardMessageRequest
|
||||
2025-04-10 18:03:35.5108 Scene:738459648 Found Unhandled RouteMessage: Fantasy.C2Chat_BoardMessageRequest
|
||||
2025-04-10 18:03:35.6998 Scene:738459648 Found Unhandled RouteMessage: Fantasy.C2Chat_BoardMessageRequest
|
||||
2025-04-10 18:03:35.9334 Scene:738459648 Found Unhandled RouteMessage: Fantasy.C2Chat_BoardMessageRequest
|
@ -0,0 +1,106 @@
|
||||
2025-04-11 15:33:27.7754 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-11 15:33:28.3052 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-11 15:33:28.8746 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-11 15:33:29.4622 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-11 15:33:50.2754 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-11 15:33:50.8787 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-11 15:33:50.8978 (GameAccountManageComponentSystem.cs:102) Gate 当前缓存中的 SessionID 2589053109795815424
|
||||
2025-04-11 15:33:50.8991 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589053109795815424 AccountId:116299279127281665
|
||||
2025-04-11 15:33:50.9430 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-11 15:33:56.2772 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
||||
2025-04-11 15:34:40.8522 (GameAccountSystem.cs:29) Gate gameAccount 下线前 保存数据到 数据库中
|
||||
2025-04-11 15:35:15.5785 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-11 15:35:15.9484 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-11 15:35:16.3260 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-11 15:35:16.7161 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-11 15:36:05.9189 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-11 15:36:06.2176 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-11 15:36:06.2564 (GameAccountManageComponentSystem.cs:102) Gate 当前缓存中的 SessionID 2589114682446970880
|
||||
2025-04-11 15:36:06.2581 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589114682446970880 AccountId:116299279127281665
|
||||
2025-04-11 15:36:06.3355 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-11 15:36:11.9240 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
||||
2025-04-11 15:36:26.1967 (GameAccountSystem.cs:29) Gate gameAccount 下线前 保存数据到 数据库中
|
||||
2025-04-11 15:36:26.2659 (G2Chat_OfflineRequestHandler.cs:11) chat : 聊天服务器SnowShow 下线
|
||||
2025-04-11 15:36:26.2659 (GateLoginHelper.cs:44) Gate : chat聊天服务器下线成功
|
||||
2025-04-11 15:36:26.2659 (GameAccountSystem.cs:29) Gate gameAccount 下线前 保存数据到 数据库中
|
||||
2025-04-11 15:36:26.2659 (EntityTimeOutComponentSystem.cs:52) session : 0 Dispose
|
||||
2025-04-11 15:37:54.5531 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-11 15:37:54.7182 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-11 15:37:54.7264 (GameAccountManageComponentSystem.cs:102) Gate 当前缓存中的 SessionID 2589354375981826048
|
||||
2025-04-11 15:37:54.7264 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589354375981826048 AccountId:116299279127281665
|
||||
2025-04-11 15:37:54.7724 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-11 15:38:00.5543 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
||||
2025-04-11 15:39:33.1843 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-11 15:39:33.5875 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-11 15:39:33.9826 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-11 15:39:34.3674 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-11 15:40:09.8010 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-11 15:40:10.0575 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-11 15:40:10.0885 (GameAccountManageComponentSystem.cs:102) Gate 当前缓存中的 SessionID 2589086095144648704
|
||||
2025-04-11 15:40:10.0885 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589086095144648704 AccountId:116299279127281665
|
||||
2025-04-11 15:40:10.1505 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-11 15:40:13.1258 (C2Chat_BoardRequestMessageHandler.cs:12) Love
|
||||
2025-04-11 15:40:15.8053 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
||||
2025-04-11 15:41:41.4501 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-11 15:41:41.8365 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-11 15:41:42.2302 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-11 15:41:42.6253 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-11 15:41:49.7037 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-11 15:41:49.9609 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-11 15:41:49.9914 (GameAccountManageComponentSystem.cs:102) Gate 当前缓存中的 SessionID 2589022323470237696
|
||||
2025-04-11 15:41:49.9914 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589022323470237696 AccountId:116299279127281665
|
||||
2025-04-11 15:41:50.0552 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-11 15:41:53.7608 (C2Chat_BoardRequestMessageHandler.cs:12) Love
|
||||
2025-04-11 15:41:53.7608 (ChatHelper.cs:21) 85932900352
|
||||
2025-04-11 15:41:53.7608 (ChatHelper.cs:21) 94522834944
|
||||
2025-04-11 15:41:55.7135 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
||||
2025-04-11 15:45:17.4931 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-11 15:45:17.8754 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-11 15:45:18.2764 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-11 15:45:18.6637 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-11 15:46:29.4587 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-11 15:46:29.7089 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-11 15:46:29.7327 (GameAccountManageComponentSystem.cs:102) Gate 当前缓存中的 SessionID 2589163060958593024
|
||||
2025-04-11 15:46:29.7327 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589163060958593024 AccountId:116299279127281665
|
||||
2025-04-11 15:46:29.7742 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-11 15:46:33.0385 (C2Chat_BoardRequestMessageHandler.cs:12) Love
|
||||
2025-04-11 15:46:33.0385 (ChatHelper.cs:21) 85932900352
|
||||
2025-04-11 15:46:33.0385 (Chat2G_BoardMessageHandler.cs:19) GateLove
|
||||
2025-04-11 15:46:35.4618 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
||||
2025-04-11 15:49:20.7250 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-11 15:49:21.1064 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-11 15:49:21.5042 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-11 15:49:21.8951 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-11 15:49:56.2043 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-11 15:49:56.4790 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-11 15:49:56.5206 (GameAccountManageComponentSystem.cs:102) Gate 当前缓存中的 SessionID 2589081697098137600
|
||||
2025-04-11 15:49:56.5206 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589081697098137600 AccountId:116299279127281665
|
||||
2025-04-11 15:49:56.5844 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-11 15:49:59.1360 (C2Chat_BoardRequestMessageHandler.cs:12) Love
|
||||
2025-04-11 15:49:59.1360 (ChatHelper.cs:21) 85932900352
|
||||
2025-04-11 15:49:59.1528 (Chat2G_BoardMessageHandler.cs:19) Love
|
||||
2025-04-11 15:50:02.2075 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
||||
2025-04-11 15:53:23.1796 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-11 15:53:23.6034 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-11 15:53:24.0237 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-11 15:53:24.4187 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-11 15:53:35.0454 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-11 15:53:35.3006 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-11 15:53:35.3419 (GameAccountManageComponentSystem.cs:102) Gate 当前缓存中的 SessionID 2589031119563259904
|
||||
2025-04-11 15:53:35.3419 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589031119563259904 AccountId:116299279127281665
|
||||
2025-04-11 15:53:35.4077 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-11 15:53:38.0390 (C2Chat_BoardRequestMessageHandler.cs:12) Love
|
||||
2025-04-11 15:53:38.0390 (ChatHelper.cs:21) 85932900352
|
||||
2025-04-11 15:53:38.0547 (Chat2G_BoardMessageHandler.cs:19) 0
|
||||
2025-04-11 15:53:41.0609 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
||||
2025-04-11 15:59:02.1323 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-11 15:59:02.4884 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-11 15:59:02.8598 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-11 15:59:03.2376 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-11 15:59:40.2166 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-11 15:59:40.4833 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-11 15:59:40.5250 (GameAccountManageComponentSystem.cs:102) Gate 当前缓存中的 SessionID 2589088294167904256
|
||||
2025-04-11 15:59:40.5250 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589088294167904256 AccountId:116299279127281665
|
||||
2025-04-11 15:59:40.5628 (GateLoginHelper.cs:32) OLine Gate1
|
||||
2025-04-11 15:59:40.5892 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-11 15:59:46.2307 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
@ -0,0 +1,762 @@
|
||||
2025-04-11 15:34:28.2433 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:30.6502 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:31.3106 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:31.5817 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:31.7644 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:31.9531 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:32.1336 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:38.6398 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:38.8670 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:38.8670 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:2
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:39.0708 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:39.2857 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:39.9822 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:40.5772 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:41.1027 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:41.6802 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:42.1975 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:42.7772 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:43.2472 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:43.7720 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:44.1722 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:44.3467 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:44.5410 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:47.3929 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:48.8810 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:3
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:48.8810 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:4
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:48.8810 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:5
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:48.8810 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:6
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:48.8810 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:7
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:48.8810 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:8
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:48.8810 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:9
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:48.8810 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:10
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:49.4911 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:49.7158 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:49.9205 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:50.1102 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:50.3128 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:50.5103 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:50.6892 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:50.8485 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:51.0574 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:51.2710 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:51.4735 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:51.6747 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:51.9875 coroutine lock timeout CoroutineLockQueueType:140718960075648 Key:2589053238644834304 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:58.8810 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:11
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:58.8810 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:12
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:58.8810 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:13
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:58.8810 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:14
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:58.8810 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:15
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:58.8810 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:16
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:58.8810 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:17
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:58.8810 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:18
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:58.8810 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:19
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:58.8810 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:20
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:58.8810 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:21
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:58.8810 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:22
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:58.8810 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:23
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:34:58.8810 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:24
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:38:28.7675 coroutine lock timeout CoroutineLockQueueType:140718960002680 Key:2589354504830844928 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:38:46.3961 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:4
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:38:58.9700 coroutine lock timeout CoroutineLockQueueType:140718960002680 Key:2589354504830844928 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:47:03.0395 coroutine lock timeout CoroutineLockQueueType:140718960002680 Key:2589163189807611904 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:47:18.2844 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:2
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:50:29.1380 coroutine lock timeout CoroutineLockQueueType:140718959871608 Key:2589081825947156480 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:54:08.0398 coroutine lock timeout CoroutineLockQueueType:140718960133752 Key:2589029049389023232 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 15:54:24.0541 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:2
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
@ -0,0 +1,121 @@
|
||||
2025-04-11 15:33:26.5739 初始化序列化器成功,数量为:2
|
||||
2025-04-11 15:33:27.3874 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001
|
||||
2025-04-11 15:33:27.6503 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:21001
|
||||
2025-04-11 15:33:27.7754 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-11 15:33:27.9906 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11002
|
||||
2025-04-11 15:33:28.3029 SceneConfigId = 1002 networkTarget = Outer KCPServer Listen 127.0.0.1:21002
|
||||
2025-04-11 15:33:28.3052 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-11 15:33:28.6006 SceneConfigId = 1010 networkTarget = Inner TCPServer Listen 127.0.0.1:11010
|
||||
2025-04-11 15:33:28.8746 SceneConfigId = 1010 networkTarget = Outer KCPServer Listen 127.0.0.1:21010
|
||||
2025-04-11 15:33:29.1824 SceneConfigId = 1011 networkTarget = Inner TCPServer Listen 127.0.0.1:11011
|
||||
2025-04-11 15:33:29.4622 SceneConfigId = 1011 networkTarget = Outer KCPServer Listen 127.0.0.1:21011
|
||||
2025-04-11 15:33:29.7341 SceneConfigId = 1026 networkTarget = Inner TCPServer Listen 127.0.0.1:11026
|
||||
2025-04-11 15:33:29.9710 SceneConfigId = 1026 networkTarget = Outer TCPServer Listen 127.0.0.1:21016
|
||||
2025-04-11 15:33:29.9710 Process:1 Startup Complete SceneCount:5
|
||||
2025-04-11 15:33:50.8991 (G2Chat_LoginRequestHandler.cs:19) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589053109795815424
|
||||
2025-04-11 15:35:14.7202 初始化序列化器成功,数量为:2
|
||||
2025-04-11 15:35:15.3431 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001
|
||||
2025-04-11 15:35:15.5644 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:21001
|
||||
2025-04-11 15:35:15.5785 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-11 15:35:15.7682 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11002
|
||||
2025-04-11 15:35:15.9484 SceneConfigId = 1002 networkTarget = Outer KCPServer Listen 127.0.0.1:21002
|
||||
2025-04-11 15:35:15.9484 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-11 15:35:16.1532 SceneConfigId = 1010 networkTarget = Inner TCPServer Listen 127.0.0.1:11010
|
||||
2025-04-11 15:35:16.3260 SceneConfigId = 1010 networkTarget = Outer KCPServer Listen 127.0.0.1:21010
|
||||
2025-04-11 15:35:16.5374 SceneConfigId = 1011 networkTarget = Inner TCPServer Listen 127.0.0.1:11011
|
||||
2025-04-11 15:35:16.7161 SceneConfigId = 1011 networkTarget = Outer KCPServer Listen 127.0.0.1:21011
|
||||
2025-04-11 15:35:16.9317 SceneConfigId = 1026 networkTarget = Inner TCPServer Listen 127.0.0.1:11026
|
||||
2025-04-11 15:35:17.1325 SceneConfigId = 1026 networkTarget = Outer TCPServer Listen 127.0.0.1:21016
|
||||
2025-04-11 15:35:17.1325 Process:1 Startup Complete SceneCount:5
|
||||
2025-04-11 15:36:06.2898 (G2Chat_LoginRequestHandler.cs:19) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589114682446970880
|
||||
2025-04-11 15:37:54.7417 (G2Chat_LoginRequestHandler.cs:19) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589354375981826048
|
||||
2025-04-11 15:39:32.3087 初始化序列化器成功,数量为:2
|
||||
2025-04-11 15:39:32.9543 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001
|
||||
2025-04-11 15:39:33.1675 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:21001
|
||||
2025-04-11 15:39:33.1843 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-11 15:39:33.4019 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11002
|
||||
2025-04-11 15:39:33.5875 SceneConfigId = 1002 networkTarget = Outer KCPServer Listen 127.0.0.1:21002
|
||||
2025-04-11 15:39:33.5875 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-11 15:39:33.7925 SceneConfigId = 1010 networkTarget = Inner TCPServer Listen 127.0.0.1:11010
|
||||
2025-04-11 15:39:33.9826 SceneConfigId = 1010 networkTarget = Outer KCPServer Listen 127.0.0.1:21010
|
||||
2025-04-11 15:39:34.1892 SceneConfigId = 1011 networkTarget = Inner TCPServer Listen 127.0.0.1:11011
|
||||
2025-04-11 15:39:34.3674 SceneConfigId = 1011 networkTarget = Outer KCPServer Listen 127.0.0.1:21011
|
||||
2025-04-11 15:39:34.5846 SceneConfigId = 1026 networkTarget = Inner TCPServer Listen 127.0.0.1:11026
|
||||
2025-04-11 15:39:34.7982 SceneConfigId = 1026 networkTarget = Outer TCPServer Listen 127.0.0.1:21016
|
||||
2025-04-11 15:39:34.7982 Process:1 Startup Complete SceneCount:5
|
||||
2025-04-11 15:40:10.1055 (G2Chat_LoginRequestHandler.cs:19) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589086095144648704
|
||||
2025-04-11 15:41:40.5770 初始化序列化器成功,数量为:2
|
||||
2025-04-11 15:41:41.2305 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001
|
||||
2025-04-11 15:41:41.4336 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:21001
|
||||
2025-04-11 15:41:41.4501 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-11 15:41:41.6505 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11002
|
||||
2025-04-11 15:41:41.8346 SceneConfigId = 1002 networkTarget = Outer KCPServer Listen 127.0.0.1:21002
|
||||
2025-04-11 15:41:41.8365 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-11 15:41:42.0469 SceneConfigId = 1010 networkTarget = Inner TCPServer Listen 127.0.0.1:11010
|
||||
2025-04-11 15:41:42.2302 SceneConfigId = 1010 networkTarget = Outer KCPServer Listen 127.0.0.1:21010
|
||||
2025-04-11 15:41:42.4428 SceneConfigId = 1011 networkTarget = Inner TCPServer Listen 127.0.0.1:11011
|
||||
2025-04-11 15:41:42.6253 SceneConfigId = 1011 networkTarget = Outer KCPServer Listen 127.0.0.1:21011
|
||||
2025-04-11 15:41:42.8275 SceneConfigId = 1026 networkTarget = Inner TCPServer Listen 127.0.0.1:11026
|
||||
2025-04-11 15:41:43.0321 SceneConfigId = 1026 networkTarget = Outer TCPServer Listen 127.0.0.1:21016
|
||||
2025-04-11 15:41:43.0321 Process:1 Startup Complete SceneCount:5
|
||||
2025-04-11 15:41:50.0085 (G2Chat_LoginRequestHandler.cs:19) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589022323470237696
|
||||
2025-04-11 15:45:16.5837 初始化序列化器成功,数量为:2
|
||||
2025-04-11 15:45:17.2601 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001
|
||||
2025-04-11 15:45:17.4770 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:21001
|
||||
2025-04-11 15:45:17.4931 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-11 15:45:17.6924 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11002
|
||||
2025-04-11 15:45:17.8754 SceneConfigId = 1002 networkTarget = Outer KCPServer Listen 127.0.0.1:21002
|
||||
2025-04-11 15:45:17.8754 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-11 15:45:18.0926 SceneConfigId = 1010 networkTarget = Inner TCPServer Listen 127.0.0.1:11010
|
||||
2025-04-11 15:45:18.2764 SceneConfigId = 1010 networkTarget = Outer KCPServer Listen 127.0.0.1:21010
|
||||
2025-04-11 15:45:18.4812 SceneConfigId = 1011 networkTarget = Inner TCPServer Listen 127.0.0.1:11011
|
||||
2025-04-11 15:45:18.6637 SceneConfigId = 1011 networkTarget = Outer KCPServer Listen 127.0.0.1:21011
|
||||
2025-04-11 15:45:18.8768 SceneConfigId = 1026 networkTarget = Inner TCPServer Listen 127.0.0.1:11026
|
||||
2025-04-11 15:45:19.0974 SceneConfigId = 1026 networkTarget = Outer TCPServer Listen 127.0.0.1:21016
|
||||
2025-04-11 15:45:19.0974 Process:1 Startup Complete SceneCount:5
|
||||
2025-04-11 15:46:29.7475 (G2Chat_LoginRequestHandler.cs:19) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589163060958593024
|
||||
2025-04-11 15:49:19.8428 初始化序列化器成功,数量为:2
|
||||
2025-04-11 15:49:20.5011 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001
|
||||
2025-04-11 15:49:20.7102 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:21001
|
||||
2025-04-11 15:49:20.7250 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-11 15:49:20.9195 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11002
|
||||
2025-04-11 15:49:21.1064 SceneConfigId = 1002 networkTarget = Outer KCPServer Listen 127.0.0.1:21002
|
||||
2025-04-11 15:49:21.1064 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-11 15:49:21.3101 SceneConfigId = 1010 networkTarget = Inner TCPServer Listen 127.0.0.1:11010
|
||||
2025-04-11 15:49:21.5042 SceneConfigId = 1010 networkTarget = Outer KCPServer Listen 127.0.0.1:21010
|
||||
2025-04-11 15:49:21.7144 SceneConfigId = 1011 networkTarget = Inner TCPServer Listen 127.0.0.1:11011
|
||||
2025-04-11 15:49:21.8951 SceneConfigId = 1011 networkTarget = Outer KCPServer Listen 127.0.0.1:21011
|
||||
2025-04-11 15:49:22.1004 SceneConfigId = 1026 networkTarget = Inner TCPServer Listen 127.0.0.1:11026
|
||||
2025-04-11 15:49:22.3014 SceneConfigId = 1026 networkTarget = Outer TCPServer Listen 127.0.0.1:21016
|
||||
2025-04-11 15:49:22.3014 Process:1 Startup Complete SceneCount:5
|
||||
2025-04-11 15:49:56.5378 (G2Chat_LoginRequestHandler.cs:19) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589081697098137600
|
||||
2025-04-11 15:53:22.2766 初始化序列化器成功,数量为:2
|
||||
2025-04-11 15:53:22.9245 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001
|
||||
2025-04-11 15:53:23.1581 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:21001
|
||||
2025-04-11 15:53:23.1796 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-11 15:53:23.4150 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11002
|
||||
2025-04-11 15:53:23.6034 SceneConfigId = 1002 networkTarget = Outer KCPServer Listen 127.0.0.1:21002
|
||||
2025-04-11 15:53:23.6034 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-11 15:53:23.8366 SceneConfigId = 1010 networkTarget = Inner TCPServer Listen 127.0.0.1:11010
|
||||
2025-04-11 15:53:24.0237 SceneConfigId = 1010 networkTarget = Outer KCPServer Listen 127.0.0.1:21010
|
||||
2025-04-11 15:53:24.2349 SceneConfigId = 1011 networkTarget = Inner TCPServer Listen 127.0.0.1:11011
|
||||
2025-04-11 15:53:24.4187 SceneConfigId = 1011 networkTarget = Outer KCPServer Listen 127.0.0.1:21011
|
||||
2025-04-11 15:53:24.6313 SceneConfigId = 1026 networkTarget = Inner TCPServer Listen 127.0.0.1:11026
|
||||
2025-04-11 15:53:24.8391 SceneConfigId = 1026 networkTarget = Outer TCPServer Listen 127.0.0.1:21016
|
||||
2025-04-11 15:53:24.8391 Process:1 Startup Complete SceneCount:5
|
||||
2025-04-11 15:53:35.3603 (G2Chat_LoginRequestHandler.cs:19) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589031119563259904
|
||||
2025-04-11 15:59:01.3151 初始化序列化器成功,数量为:2
|
||||
2025-04-11 15:59:01.9274 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001
|
||||
2025-04-11 15:59:02.1165 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:21001
|
||||
2025-04-11 15:59:02.1313 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-11 15:59:02.3145 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11002
|
||||
2025-04-11 15:59:02.4884 SceneConfigId = 1002 networkTarget = Outer KCPServer Listen 127.0.0.1:21002
|
||||
2025-04-11 15:59:02.4884 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-11 15:59:02.6804 SceneConfigId = 1010 networkTarget = Inner TCPServer Listen 127.0.0.1:11010
|
||||
2025-04-11 15:59:02.8598 SceneConfigId = 1010 networkTarget = Outer KCPServer Listen 127.0.0.1:21010
|
||||
2025-04-11 15:59:03.0545 SceneConfigId = 1011 networkTarget = Inner TCPServer Listen 127.0.0.1:11011
|
||||
2025-04-11 15:59:03.2376 SceneConfigId = 1011 networkTarget = Outer KCPServer Listen 127.0.0.1:21011
|
||||
2025-04-11 15:59:03.4464 SceneConfigId = 1026 networkTarget = Inner TCPServer Listen 127.0.0.1:11026
|
||||
2025-04-11 15:59:03.6500 SceneConfigId = 1026 networkTarget = Outer TCPServer Listen 127.0.0.1:21016
|
||||
2025-04-11 15:59:03.6500 Process:1 Startup Complete SceneCount:5
|
||||
2025-04-11 15:59:40.5431 (G2Chat_LoginRequestHandler.cs:19) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589088294167904256
|
@ -0,0 +1,11 @@
|
||||
2025-04-11 15:33:50.8787 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
||||
2025-04-11 15:34:30.8472 session timeout id:148901878326099968 timeNow:1744356870847 _session.LastReceiveTime:1744356862804 _timeOut:8000
|
||||
2025-04-11 15:36:06.2176 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
||||
2025-04-11 15:36:16.1918 session timeout id:148904214788308992 timeNow:1744356976191 _session.LastReceiveTime:1744356968184 _timeOut:8000
|
||||
2025-04-11 15:37:54.7182 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
||||
2025-04-11 15:40:10.0575 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
||||
2025-04-11 15:41:49.9609 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
||||
2025-04-11 15:46:29.7089 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
||||
2025-04-11 15:49:56.4790 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
||||
2025-04-11 15:53:35.3006 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
||||
2025-04-11 15:59:40.4833 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
@ -0,0 +1,63 @@
|
||||
2025-04-11 16:02:41.0670 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-11 16:02:41.4687 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-11 16:02:41.8843 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-11 16:02:42.2825 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-11 16:02:47.1598 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-11 16:02:47.4039 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-11 16:02:47.4331 (GameAccountManageComponentSystem.cs:102) Gate 当前缓存中的 SessionID 2589017925423726592
|
||||
2025-04-11 16:02:47.4331 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589017925423726592 AccountId:116299279127281665
|
||||
2025-04-11 16:02:47.4481 (GateLoginHelper.cs:32) OLine Gate1
|
||||
2025-04-11 16:02:47.4741 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-11 16:02:49.1849 (C2Chat_BoardRequestMessageHandler.cs:12) Love
|
||||
2025-04-11 16:02:49.1849 (ChatHelper.cs:21) 85932900352
|
||||
2025-04-11 16:02:53.1615 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
||||
2025-04-11 16:06:55.1604 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-11 16:06:55.5580 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-11 16:06:55.9862 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-11 16:06:56.3952 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-11 16:07:05.2280 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-11 16:07:05.4977 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-11 16:07:05.5249 (GameAccountManageComponentSystem.cs:102) Gate 当前缓存中的 SessionID 2589026721516748800
|
||||
2025-04-11 16:07:05.5249 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589026721516748800 AccountId:116299279127281665
|
||||
2025-04-11 16:07:05.5626 (GateLoginHelper.cs:32) OLine Gate1
|
||||
2025-04-11 16:07:05.6048 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-11 16:07:11.2339 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
||||
2025-04-11 16:07:12.0761 (C2Chat_BoardRequestMessageHandler.cs:12) Love
|
||||
2025-04-11 16:07:12.0761 (ChatHelper.cs:21) 85932900352
|
||||
2025-04-11 16:07:12.0761 (ChatHelper.cs:21) 94522834944
|
||||
2025-04-11 16:10:44.9181 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-11 16:10:45.3008 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-11 16:10:45.6843 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-11 16:10:46.0383 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-11 16:11:13.0428 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-11 16:11:13.3245 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-11 16:11:13.3523 (GameAccountManageComponentSystem.cs:102) Gate 当前缓存中的 SessionID 2589066303935348736
|
||||
2025-04-11 16:11:13.3523 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589066303935348736 AccountId:116299279127281665
|
||||
2025-04-11 16:11:13.3879 (GateLoginHelper.cs:32) OLine Gate1
|
||||
2025-04-11 16:11:13.4158 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-11 16:11:17.5050 (C2Chat_BoardRequestMessageHandler.cs:12) Love
|
||||
2025-04-11 16:11:17.5050 (ChatHelper.cs:21) 85932900352
|
||||
2025-04-11 16:11:17.5050 (ChatHelper.cs:21) 94522834944
|
||||
2025-04-11 16:11:19.0489 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
||||
2025-04-11 16:11:57.2160 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-11 16:11:57.6031 (OnCreateScene_InitEvent.cs:16) 初始化鉴权服务器组件
|
||||
2025-04-11 16:11:57.9995 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-11 16:11:58.4045 (OnCreateScene_InitEvent.cs:21) 初始网关(Gate)服务器组件
|
||||
2025-04-11 16:12:04.1304 (AuthenticationComponentSystem.cs:130) Authentication: Login Success(登录成功),username:wangwei,password:123,source:客户端,Position:1001
|
||||
2025-04-11 16:12:04.3868 (C2G_LoginRequestHandler.cs:31) Gate校验登录成功用户116299279127281665
|
||||
2025-04-11 16:12:04.4148 (GameAccountManageComponentSystem.cs:102) Gate 当前缓存中的 SessionID 2589020124446982144
|
||||
2025-04-11 16:12:04.4148 (C2G_LoginRequestHandler.cs:43) Gate : Login 登录成功GameAccount:session2589020124446982144 AccountId:116299279127281665
|
||||
2025-04-11 16:12:04.4510 (GateLoginHelper.cs:32) OLine Gate1
|
||||
2025-04-11 16:12:04.4775 (G2C_GetGameAccountInfoHandler.cs:37) Gate: 获取账号信息 AccountId SnowShow
|
||||
2025-04-11 16:12:06.6886 (C2Chat_BoardRequestMessageHandler.cs:12) Love
|
||||
2025-04-11 16:12:06.6886 (ChatHelper.cs:21) 85932900352
|
||||
2025-04-11 16:12:06.6886 (ChatHelper.cs:21) 94522834944
|
||||
2025-04-11 16:12:06.7062 (Chat2G_BoardMessageHandler.cs:19) 0
|
||||
2025-04-11 16:12:06.7062 (Chat2G_BoardMessageHandler.cs:19) 1
|
||||
2025-04-11 16:12:06.7062 (Chat2G_BoardMessageHandler.cs:23) 2589020124446982144
|
||||
2025-04-11 16:12:10.1328 (AuthenticationComponentSystem.cs:150) Authentication:Login:username:wangwei 用户移除成功 从缓存中
|
||||
2025-04-11 16:12:49.3738 (GameAccountSystem.cs:29) Gate gameAccount 下线前 保存数据到 数据库中
|
||||
2025-04-11 16:12:49.4467 (G2Chat_OfflineRequestHandler.cs:11) chat : 聊天服务器SnowShow 下线
|
||||
2025-04-11 16:12:49.4467 (GateLoginHelper.cs:45) Gate : chat聊天服务器下线成功
|
||||
2025-04-11 16:12:49.4467 (GameAccountSystem.cs:29) Gate gameAccount 下线前 保存数据到 数据库中
|
||||
2025-04-11 16:12:49.4467 (EntityTimeOutComponentSystem.cs:52) session : 0 Dispose
|
@ -0,0 +1,23 @@
|
||||
2025-04-11 16:03:19.1870 coroutine lock timeout CoroutineLockQueueType:140718960002680 Key:2589018054272745472 Tag:
|
||||
at Fantasy.Async.OnCoroutineLockTimeout.Handler(CoroutineLockTimeout self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass18_0`1.<OnceTimer>g__OnceTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
||||
2025-04-11 16:03:31.8883 Unsupported protocol type:Fantasy.C2Chat_BoardMessageRequest rpcId:2
|
||||
at Fantasy.Scheduler.NetworkMessagingComponent.ReturnMessageSender(UInt32 rpcId, MessageSender messageSender)
|
||||
at Fantasy.Scheduler.OnNetworkMessageUpdateCheckTimeout.Handler(NetworkMessageUpdate self)
|
||||
at Fantasy.Event.EventSystem`1.Invoke(Object self)
|
||||
at Fantasy.Event.EventComponent.Publish[TEventData](TEventData eventData)
|
||||
at Fantasy.Timer.TimerSchedulerNet.<>c__DisplayClass22_0`1.<RepeatedTimer>g__RepeatedTimerVoid|0()
|
||||
at Fantasy.Timer.TimerSchedulerNet.Update()
|
||||
at Fantasy.Entitas.EntityComponent.Update()
|
||||
at Fantasy.Scene.Update()
|
||||
at Fantasy.MultiThreadScheduler.Loop(Scene scene, CancellationToken cancellationToken)
|
||||
at Fantasy.MultiThreadScheduler.<>c__DisplayClass5_0.<Add>b__0()
|
||||
|
@ -0,0 +1,60 @@
|
||||
2025-04-11 16:02:40.1433 初始化序列化器成功,数量为:2
|
||||
2025-04-11 16:02:40.8448 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001
|
||||
2025-04-11 16:02:41.0507 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:21001
|
||||
2025-04-11 16:02:41.0670 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-11 16:02:41.2757 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11002
|
||||
2025-04-11 16:02:41.4687 SceneConfigId = 1002 networkTarget = Outer KCPServer Listen 127.0.0.1:21002
|
||||
2025-04-11 16:02:41.4687 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-11 16:02:41.6862 SceneConfigId = 1010 networkTarget = Inner TCPServer Listen 127.0.0.1:11010
|
||||
2025-04-11 16:02:41.8815 SceneConfigId = 1010 networkTarget = Outer KCPServer Listen 127.0.0.1:21010
|
||||
2025-04-11 16:02:42.1015 SceneConfigId = 1011 networkTarget = Inner TCPServer Listen 127.0.0.1:11011
|
||||
2025-04-11 16:02:42.2825 SceneConfigId = 1011 networkTarget = Outer KCPServer Listen 127.0.0.1:21011
|
||||
2025-04-11 16:02:42.4984 SceneConfigId = 1026 networkTarget = Inner TCPServer Listen 127.0.0.1:11026
|
||||
2025-04-11 16:02:42.6990 SceneConfigId = 1026 networkTarget = Outer TCPServer Listen 127.0.0.1:21016
|
||||
2025-04-11 16:02:42.6990 Process:1 Startup Complete SceneCount:5
|
||||
2025-04-11 16:02:47.4481 (G2Chat_LoginRequestHandler.cs:19) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589017925423726592
|
||||
2025-04-11 16:06:54.2808 初始化序列化器成功,数量为:2
|
||||
2025-04-11 16:06:54.9424 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001
|
||||
2025-04-11 16:06:55.1438 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:21001
|
||||
2025-04-11 16:06:55.1604 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-11 16:06:55.3643 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11002
|
||||
2025-04-11 16:06:55.5580 SceneConfigId = 1002 networkTarget = Outer KCPServer Listen 127.0.0.1:21002
|
||||
2025-04-11 16:06:55.5580 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-11 16:06:55.7960 SceneConfigId = 1010 networkTarget = Inner TCPServer Listen 127.0.0.1:11010
|
||||
2025-04-11 16:06:55.9862 SceneConfigId = 1010 networkTarget = Outer KCPServer Listen 127.0.0.1:21010
|
||||
2025-04-11 16:06:56.2088 SceneConfigId = 1011 networkTarget = Inner TCPServer Listen 127.0.0.1:11011
|
||||
2025-04-11 16:06:56.3952 SceneConfigId = 1011 networkTarget = Outer KCPServer Listen 127.0.0.1:21011
|
||||
2025-04-11 16:06:56.6150 SceneConfigId = 1026 networkTarget = Inner TCPServer Listen 127.0.0.1:11026
|
||||
2025-04-11 16:06:56.8238 SceneConfigId = 1026 networkTarget = Outer TCPServer Listen 127.0.0.1:21016
|
||||
2025-04-11 16:06:56.8238 Process:1 Startup Complete SceneCount:5
|
||||
2025-04-11 16:07:05.5436 (G2Chat_LoginRequestHandler.cs:19) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589026721516748800
|
||||
2025-04-11 16:10:44.1046 初始化序列化器成功,数量为:2
|
||||
2025-04-11 16:10:44.7048 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001
|
||||
2025-04-11 16:10:44.9032 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:21001
|
||||
2025-04-11 16:10:44.9181 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-11 16:10:45.1210 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11002
|
||||
2025-04-11 16:10:45.3008 SceneConfigId = 1002 networkTarget = Outer KCPServer Listen 127.0.0.1:21002
|
||||
2025-04-11 16:10:45.3008 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-11 16:10:45.5018 SceneConfigId = 1010 networkTarget = Inner TCPServer Listen 127.0.0.1:11010
|
||||
2025-04-11 16:10:45.6843 SceneConfigId = 1010 networkTarget = Outer KCPServer Listen 127.0.0.1:21010
|
||||
2025-04-11 16:10:45.8691 SceneConfigId = 1011 networkTarget = Inner TCPServer Listen 127.0.0.1:11011
|
||||
2025-04-11 16:10:46.0377 SceneConfigId = 1011 networkTarget = Outer KCPServer Listen 127.0.0.1:21011
|
||||
2025-04-11 16:10:46.2357 SceneConfigId = 1026 networkTarget = Inner TCPServer Listen 127.0.0.1:11026
|
||||
2025-04-11 16:10:46.4180 SceneConfigId = 1026 networkTarget = Outer TCPServer Listen 127.0.0.1:21016
|
||||
2025-04-11 16:10:46.4180 Process:1 Startup Complete SceneCount:5
|
||||
2025-04-11 16:11:13.3704 (G2Chat_LoginRequestHandler.cs:19) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589066303935348736
|
||||
2025-04-11 16:11:56.3548 初始化序列化器成功,数量为:2
|
||||
2025-04-11 16:11:56.9930 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001
|
||||
2025-04-11 16:11:57.1998 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:21001
|
||||
2025-04-11 16:11:57.2160 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-11 16:11:57.4152 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11002
|
||||
2025-04-11 16:11:57.6011 SceneConfigId = 1002 networkTarget = Outer KCPServer Listen 127.0.0.1:21002
|
||||
2025-04-11 16:11:57.6031 (AuthenticationJWTComponentSystem.cs:44) RSA密钥导入成功
|
||||
2025-04-11 16:11:57.8165 SceneConfigId = 1010 networkTarget = Inner TCPServer Listen 127.0.0.1:11010
|
||||
2025-04-11 16:11:57.9995 SceneConfigId = 1010 networkTarget = Outer KCPServer Listen 127.0.0.1:21010
|
||||
2025-04-11 16:11:58.2086 SceneConfigId = 1011 networkTarget = Inner TCPServer Listen 127.0.0.1:11011
|
||||
2025-04-11 16:11:58.4045 SceneConfigId = 1011 networkTarget = Outer KCPServer Listen 127.0.0.1:21011
|
||||
2025-04-11 16:11:58.6185 SceneConfigId = 1026 networkTarget = Inner TCPServer Listen 127.0.0.1:11026
|
||||
2025-04-11 16:11:58.8222 SceneConfigId = 1026 networkTarget = Outer TCPServer Listen 127.0.0.1:21016
|
||||
2025-04-11 16:11:58.8222 Process:1 Startup Complete SceneCount:5
|
||||
2025-04-11 16:12:04.4311 (G2Chat_LoginRequestHandler.cs:19) 登录聊天服务器成功 SnowShow AccountId 116299279127281665 GateRoutedId 2589020124446982144
|
@ -0,0 +1,5 @@
|
||||
2025-04-11 16:02:47.4039 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
||||
2025-04-11 16:07:05.4977 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
||||
2025-04-11 16:11:13.3245 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
||||
2025-04-11 16:12:04.3868 (GateJWTComponentSystem.cs:47) Gate:Token签名校验成功
|
||||
2025-04-11 16:12:39.3690 session timeout id:148941288946008064 timeNow:1744359159368 _session.LastReceiveTime:1744359146383 _timeOut:8000
|
BIN
GameServer/Bin/Debug/net9.0/APlugins.dll
Normal file
BIN
GameServer/Bin/Debug/net9.0/APlugins.dll
Normal file
Binary file not shown.
BIN
GameServer/Bin/Debug/net9.0/APlugins.pdb
Normal file
BIN
GameServer/Bin/Debug/net9.0/APlugins.pdb
Normal file
Binary file not shown.
BIN
GameServer/Bin/Debug/net9.0/CommandLine.dll
Normal file
BIN
GameServer/Bin/Debug/net9.0/CommandLine.dll
Normal file
Binary file not shown.
BIN
GameServer/Bin/Debug/net9.0/DnsClient.dll
Normal file
BIN
GameServer/Bin/Debug/net9.0/DnsClient.dll
Normal file
Binary file not shown.
BIN
GameServer/Bin/Debug/net9.0/Entity.dll
Normal file
BIN
GameServer/Bin/Debug/net9.0/Entity.dll
Normal file
Binary file not shown.
BIN
GameServer/Bin/Debug/net9.0/Entity.pdb
Normal file
BIN
GameServer/Bin/Debug/net9.0/Entity.pdb
Normal file
Binary file not shown.
BIN
GameServer/Bin/Debug/net9.0/Fantasy-Net.Config.dll
Normal file
BIN
GameServer/Bin/Debug/net9.0/Fantasy-Net.Config.dll
Normal file
Binary file not shown.
BIN
GameServer/Bin/Debug/net9.0/Fantasy-Net.ConfigTable.dll
Normal file
BIN
GameServer/Bin/Debug/net9.0/Fantasy-Net.ConfigTable.dll
Normal file
Binary file not shown.
BIN
GameServer/Bin/Debug/net9.0/Fantasy-Net.NLog.dll
Normal file
BIN
GameServer/Bin/Debug/net9.0/Fantasy-Net.NLog.dll
Normal file
Binary file not shown.
BIN
GameServer/Bin/Debug/net9.0/Fantasy-Net.dll
Normal file
BIN
GameServer/Bin/Debug/net9.0/Fantasy-Net.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
GameServer/Bin/Debug/net9.0/Hotfix.dll
Normal file
BIN
GameServer/Bin/Debug/net9.0/Hotfix.dll
Normal file
Binary file not shown.
BIN
GameServer/Bin/Debug/net9.0/Hotfix.pdb
Normal file
BIN
GameServer/Bin/Debug/net9.0/Hotfix.pdb
Normal file
Binary file not shown.
578
GameServer/Bin/Debug/net9.0/Main.deps.json
Normal file
578
GameServer/Bin/Debug/net9.0/Main.deps.json
Normal file
@ -0,0 +1,578 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v9.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v9.0": {
|
||||
"Main/1.0.0": {
|
||||
"dependencies": {
|
||||
"APlugins": "1.0.0",
|
||||
"Entity": "1.0.0",
|
||||
"Fantasy-Net.NLog": "2024.1.20",
|
||||
"Hotfix": "1.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"Main.dll": {}
|
||||
}
|
||||
},
|
||||
"CommandLineParser/2.9.1": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/CommandLine.dll": {
|
||||
"assemblyVersion": "2.9.1.0",
|
||||
"fileVersion": "2.9.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"DnsClient/1.6.1": {
|
||||
"dependencies": {
|
||||
"Microsoft.Win32.Registry": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/DnsClient.dll": {
|
||||
"assemblyVersion": "1.6.1.0",
|
||||
"fileVersion": "1.6.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Fantasy-Net/2024.2.24": {
|
||||
"dependencies": {
|
||||
"CommandLineParser": "2.9.1",
|
||||
"MongoDB.Bson": "3.1.0",
|
||||
"MongoDB.Driver": "3.1.0",
|
||||
"Newtonsoft.Json": "13.0.3",
|
||||
"protobuf-net": "3.2.45"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Fantasy-Net.dll": {
|
||||
"assemblyVersion": "1.0.0.0",
|
||||
"fileVersion": "1.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Fantasy-Net.Config/2024.1.4": {
|
||||
"runtime": {
|
||||
"lib/net8.0/Fantasy-Net.Config.dll": {
|
||||
"assemblyVersion": "1.0.0.0",
|
||||
"fileVersion": "1.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Fantasy-Net.ConfigTable/2024.2.0": {
|
||||
"dependencies": {
|
||||
"Fantasy-Net": "2024.2.24"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Fantasy-Net.ConfigTable.dll": {
|
||||
"assemblyVersion": "1.0.0.0",
|
||||
"fileVersion": "1.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Fantasy-Net.NLog/2024.1.20": {
|
||||
"dependencies": {
|
||||
"Fantasy-Net": "2024.2.24",
|
||||
"NLog": "5.3.4"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Fantasy-Net.NLog.dll": {
|
||||
"assemblyVersion": "1.0.0.0",
|
||||
"fileVersion": "1.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Fantasy-Net.Tools.ExporterConfigTable/2024.2.0": {
|
||||
"runtime": {
|
||||
"lib/net8.0/Fantasy.Tools.ExporterConfigTable.dll": {
|
||||
"assemblyVersion": "1.0.0.0",
|
||||
"fileVersion": "1.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Fantasy-Net.Tools.ExporterNetworkProtocol/2024.2.24": {
|
||||
"runtime": {
|
||||
"lib/net8.0/Fantasy.Tools.ExporterNetworkProtocol.dll": {
|
||||
"assemblyVersion": "1.0.0.0",
|
||||
"fileVersion": "1.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {},
|
||||
"Microsoft.Extensions.Logging.Abstractions/8.0.2": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
|
||||
}
|
||||
},
|
||||
"Microsoft.IdentityModel.Abstractions/8.7.0": {
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": {
|
||||
"assemblyVersion": "8.7.0.0",
|
||||
"fileVersion": "8.7.0.60321"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.IdentityModel.JsonWebTokens/8.7.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.IdentityModel.Tokens": "8.7.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
|
||||
"assemblyVersion": "8.7.0.0",
|
||||
"fileVersion": "8.7.0.60321"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.IdentityModel.Logging/8.7.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.IdentityModel.Abstractions": "8.7.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.IdentityModel.Logging.dll": {
|
||||
"assemblyVersion": "8.7.0.0",
|
||||
"fileVersion": "8.7.0.60321"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.IdentityModel.Tokens/8.7.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Logging.Abstractions": "8.0.2",
|
||||
"Microsoft.IdentityModel.Logging": "8.7.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/Microsoft.IdentityModel.Tokens.dll": {
|
||||
"assemblyVersion": "8.7.0.0",
|
||||
"fileVersion": "8.7.0.60321"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/5.0.0": {},
|
||||
"Microsoft.Win32.Registry/5.0.0": {
|
||||
"dependencies": {
|
||||
"System.Security.AccessControl": "5.0.0",
|
||||
"System.Security.Principal.Windows": "5.0.0"
|
||||
}
|
||||
},
|
||||
"MongoDB.Bson/3.1.0": {
|
||||
"dependencies": {
|
||||
"System.Memory": "4.5.5",
|
||||
"System.Runtime.CompilerServices.Unsafe": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/MongoDB.Bson.dll": {
|
||||
"assemblyVersion": "3.1.0.0",
|
||||
"fileVersion": "3.1.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"MongoDB.Driver/3.1.0": {
|
||||
"dependencies": {
|
||||
"DnsClient": "1.6.1",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "8.0.2",
|
||||
"MongoDB.Bson": "3.1.0",
|
||||
"SharpCompress": "0.30.1",
|
||||
"Snappier": "1.0.0",
|
||||
"System.Buffers": "4.5.1",
|
||||
"ZstdSharp.Port": "0.7.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/MongoDB.Driver.dll": {
|
||||
"assemblyVersion": "3.1.0.0",
|
||||
"fileVersion": "3.1.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Newtonsoft.Json/13.0.3": {
|
||||
"runtime": {
|
||||
"lib/net6.0/Newtonsoft.Json.dll": {
|
||||
"assemblyVersion": "13.0.0.0",
|
||||
"fileVersion": "13.0.3.27908"
|
||||
}
|
||||
}
|
||||
},
|
||||
"NLog/5.3.4": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/NLog.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.3.4.2778"
|
||||
}
|
||||
}
|
||||
},
|
||||
"protobuf-net/3.2.45": {
|
||||
"dependencies": {
|
||||
"protobuf-net.Core": "3.2.45"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/protobuf-net.dll": {
|
||||
"assemblyVersion": "3.0.0.0",
|
||||
"fileVersion": "3.2.45.36865"
|
||||
}
|
||||
}
|
||||
},
|
||||
"protobuf-net.Core/3.2.45": {
|
||||
"dependencies": {
|
||||
"System.Collections.Immutable": "7.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/protobuf-net.Core.dll": {
|
||||
"assemblyVersion": "3.0.0.0",
|
||||
"fileVersion": "3.2.45.36865"
|
||||
}
|
||||
}
|
||||
},
|
||||
"SharpCompress/0.30.1": {
|
||||
"runtime": {
|
||||
"lib/net5.0/SharpCompress.dll": {
|
||||
"assemblyVersion": "0.30.1.0",
|
||||
"fileVersion": "0.30.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Snappier/1.0.0": {
|
||||
"runtime": {
|
||||
"lib/net5.0/Snappier.dll": {
|
||||
"assemblyVersion": "1.0.0.0",
|
||||
"fileVersion": "1.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Buffers/4.5.1": {},
|
||||
"System.Collections.Immutable/7.0.0": {},
|
||||
"System.Formats.Asn1/5.0.0": {},
|
||||
"System.IdentityModel.Tokens.Jwt/8.7.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.IdentityModel.JsonWebTokens": "8.7.0",
|
||||
"Microsoft.IdentityModel.Tokens": "8.7.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": {
|
||||
"assemblyVersion": "8.7.0.0",
|
||||
"fileVersion": "8.7.0.60321"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Memory/4.5.5": {},
|
||||
"System.Runtime.CompilerServices.Unsafe/5.0.0": {},
|
||||
"System.Security.AccessControl/5.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "5.0.0",
|
||||
"System.Security.Principal.Windows": "5.0.0"
|
||||
}
|
||||
},
|
||||
"System.Security.Cryptography.Cng/5.0.0": {
|
||||
"dependencies": {
|
||||
"System.Formats.Asn1": "5.0.0"
|
||||
}
|
||||
},
|
||||
"System.Security.Principal.Windows/5.0.0": {},
|
||||
"ZstdSharp.Port/0.7.3": {
|
||||
"runtime": {
|
||||
"lib/net7.0/ZstdSharp.dll": {
|
||||
"assemblyVersion": "0.7.3.0",
|
||||
"fileVersion": "0.7.3.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"APlugins/1.0.0": {
|
||||
"dependencies": {
|
||||
"Fantasy-Net.Config": "2024.1.4",
|
||||
"Fantasy-Net.ConfigTable": "2024.2.0",
|
||||
"Fantasy-Net.Tools.ExporterConfigTable": "2024.2.0",
|
||||
"Fantasy-Net.Tools.ExporterNetworkProtocol": "2024.2.24",
|
||||
"Microsoft.IdentityModel.Tokens": "8.7.0"
|
||||
},
|
||||
"runtime": {
|
||||
"APlugins.dll": {
|
||||
"assemblyVersion": "1.0.0.0",
|
||||
"fileVersion": "1.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Entity/1.0.0": {
|
||||
"dependencies": {
|
||||
"APlugins": "1.0.0",
|
||||
"Fantasy-Net": "2024.2.24",
|
||||
"System.IdentityModel.Tokens.Jwt": "8.7.0",
|
||||
"System.Security.Cryptography.Cng": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"Entity.dll": {
|
||||
"assemblyVersion": "1.0.0.0",
|
||||
"fileVersion": "1.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Hotfix/1.0.0": {
|
||||
"dependencies": {
|
||||
"Entity": "1.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"Hotfix.dll": {
|
||||
"assemblyVersion": "1.0.0.0",
|
||||
"fileVersion": "1.0.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Main/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"CommandLineParser/2.9.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-OE0sl1/sQ37bjVsPKKtwQlWDgqaxWgtme3xZz7JssWUzg5JpMIyHgCTY9MVMxOg48fJ1AgGT3tgdH5m/kQ5xhA==",
|
||||
"path": "commandlineparser/2.9.1",
|
||||
"hashPath": "commandlineparser.2.9.1.nupkg.sha512"
|
||||
},
|
||||
"DnsClient/1.6.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==",
|
||||
"path": "dnsclient/1.6.1",
|
||||
"hashPath": "dnsclient.1.6.1.nupkg.sha512"
|
||||
},
|
||||
"Fantasy-Net/2024.2.24": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-5u460iiB29NDwxIBV25WzuxUxW5fV0i8DJ2OE47fSJW1lWq+AP/LJ4KYqcH6zngyDFMOMOjh2S6hT3IZ/r4dwA==",
|
||||
"path": "fantasy-net/2024.2.24",
|
||||
"hashPath": "fantasy-net.2024.2.24.nupkg.sha512"
|
||||
},
|
||||
"Fantasy-Net.Config/2024.1.4": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-zStTIJq91mx3VjCcU7eAtrExAcv1Zg+dAd8UdDvpHu7kTY8ldDQMp8sCmez2s+vUTmNyH1hlOgEE3rJILAijfQ==",
|
||||
"path": "fantasy-net.config/2024.1.4",
|
||||
"hashPath": "fantasy-net.config.2024.1.4.nupkg.sha512"
|
||||
},
|
||||
"Fantasy-Net.ConfigTable/2024.2.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-TIpd7Cz5eTx5WlI0QPA/gLkTCNWW4DHFXG5ZXgLjkxgxC4AYpXzvktaU/merldPuccaebc7ld8oVxJ0fejKHEg==",
|
||||
"path": "fantasy-net.configtable/2024.2.0",
|
||||
"hashPath": "fantasy-net.configtable.2024.2.0.nupkg.sha512"
|
||||
},
|
||||
"Fantasy-Net.NLog/2024.1.20": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-HJuHfecWrD7tcQYEZezJzgayvG5leAbdWlgvo9ft/CUuwTtAB+tkeKP3e3VtbkCoPaAZO4VAUN0Y30Ute2/vrQ==",
|
||||
"path": "fantasy-net.nlog/2024.1.20",
|
||||
"hashPath": "fantasy-net.nlog.2024.1.20.nupkg.sha512"
|
||||
},
|
||||
"Fantasy-Net.Tools.ExporterConfigTable/2024.2.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-jPL8qd+9WTsOAOhXVkAOHuwjoyFTGIg6Zr/zsSP+OB4G6sNklcHI0KDnMYWN0EW01fSycl/g1DyRyyDdwZ2iPQ==",
|
||||
"path": "fantasy-net.tools.exporterconfigtable/2024.2.0",
|
||||
"hashPath": "fantasy-net.tools.exporterconfigtable.2024.2.0.nupkg.sha512"
|
||||
},
|
||||
"Fantasy-Net.Tools.ExporterNetworkProtocol/2024.2.24": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-gKbHZBgiTuERq4LCgctChvpYJGVoUbGNHoXq9x7Yz7aUoU7/M6DjuGdZE7XnsyNioddz1Gh992900RUAPwSpjQ==",
|
||||
"path": "fantasy-net.tools.exporternetworkprotocol/2024.2.24",
|
||||
"hashPath": "fantasy-net.tools.exporternetworkprotocol.2024.2.24.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==",
|
||||
"path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2",
|
||||
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions/8.0.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==",
|
||||
"path": "microsoft.extensions.logging.abstractions/8.0.2",
|
||||
"hashPath": "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.IdentityModel.Abstractions/8.7.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-OQd5aVepYvh5evOmBMeAYjMIpEcTf1ZCBZaU7Nh/RlhhdXefjFDJeP1L2F2zeNT1unFr+wUu/h3Ac2Xb4BXU6w==",
|
||||
"path": "microsoft.identitymodel.abstractions/8.7.0",
|
||||
"hashPath": "microsoft.identitymodel.abstractions.8.7.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.IdentityModel.JsonWebTokens/8.7.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-uzsSAWhNhbrkWbQKBTE8QhzviU6sr3bJ1Bkv7gERlhswfSKOp7HsxTRLTPBpx/whQ/GRRHEwMg8leRIPbMrOgw==",
|
||||
"path": "microsoft.identitymodel.jsonwebtokens/8.7.0",
|
||||
"hashPath": "microsoft.identitymodel.jsonwebtokens.8.7.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.IdentityModel.Logging/8.7.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Bs0TznPAu+nxa9rAVHJ+j3CYECHJkT3tG8AyBfhFYlT5ldsDhoxFT7J+PKxJHLf+ayqWfvDZHHc4639W2FQCxA==",
|
||||
"path": "microsoft.identitymodel.logging/8.7.0",
|
||||
"hashPath": "microsoft.identitymodel.logging.8.7.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.IdentityModel.Tokens/8.7.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-5Z6voXjRXAnGklhmZd1mKz89UhcF5ZQQZaZc2iKrOuL4Li1UihG2vlJx8IbiFAOIxy/xdbsAm0A+WZEaH5fxng==",
|
||||
"path": "microsoft.identitymodel.tokens/8.7.0",
|
||||
"hashPath": "microsoft.identitymodel.tokens.8.7.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
|
||||
"path": "microsoft.netcore.platforms/5.0.0",
|
||||
"hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Win32.Registry/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
|
||||
"path": "microsoft.win32.registry/5.0.0",
|
||||
"hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"MongoDB.Bson/3.1.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-3dhaZhz18B5vUoEP13o2j8A6zQfkHdZhwBvLZEjDJum4BTLLv1/Z8bt25UQEtpqvYwLgde4R6ekWZ7XAYUMxuw==",
|
||||
"path": "mongodb.bson/3.1.0",
|
||||
"hashPath": "mongodb.bson.3.1.0.nupkg.sha512"
|
||||
},
|
||||
"MongoDB.Driver/3.1.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-+O7lKaIl7VUHptE0hqTd7UY1G5KDp/o8S4upG7YL4uChMNKD/U6tz9i17nMGHaD/L2AiPLgaJcaDe2XACsegGA==",
|
||||
"path": "mongodb.driver/3.1.0",
|
||||
"hashPath": "mongodb.driver.3.1.0.nupkg.sha512"
|
||||
},
|
||||
"Newtonsoft.Json/13.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
|
||||
"path": "newtonsoft.json/13.0.3",
|
||||
"hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
|
||||
},
|
||||
"NLog/5.3.4": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-gLy7+O1hEYJXIlcTr1/VWjGXrZTQFZzYNO18IWasD64pNwz0BreV+nHLxWKXWZzERRzoKnsk2XYtwLkTVk7J1A==",
|
||||
"path": "nlog/5.3.4",
|
||||
"hashPath": "nlog.5.3.4.nupkg.sha512"
|
||||
},
|
||||
"protobuf-net/3.2.45": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-5UZ/ukUHcGbFSl7vNMrHsfjqdxusdd9w7w0fCEXzf3UUtsrGNVCzV5SmF+sCHAbnRV2qPcD1ixiDP7Aj8lX/HA==",
|
||||
"path": "protobuf-net/3.2.45",
|
||||
"hashPath": "protobuf-net.3.2.45.nupkg.sha512"
|
||||
},
|
||||
"protobuf-net.Core/3.2.45": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-PMWatW2NrT1uTXD7etJ4VdQ0wWZLFrIfdRGppD2QX7nzZ0+kIzqhq551u6ZiXJHWJgG4hWFEkSnUnt2aB6posg==",
|
||||
"path": "protobuf-net.core/3.2.45",
|
||||
"hashPath": "protobuf-net.core.3.2.45.nupkg.sha512"
|
||||
},
|
||||
"SharpCompress/0.30.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==",
|
||||
"path": "sharpcompress/0.30.1",
|
||||
"hashPath": "sharpcompress.0.30.1.nupkg.sha512"
|
||||
},
|
||||
"Snappier/1.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-rFtK2KEI9hIe8gtx3a0YDXdHOpedIf9wYCEYtBEmtlyiWVX3XlCNV03JrmmAi/Cdfn7dxK+k0sjjcLv4fpHnqA==",
|
||||
"path": "snappier/1.0.0",
|
||||
"hashPath": "snappier.1.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Buffers/4.5.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
|
||||
"path": "system.buffers/4.5.1",
|
||||
"hashPath": "system.buffers.4.5.1.nupkg.sha512"
|
||||
},
|
||||
"System.Collections.Immutable/7.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-dQPcs0U1IKnBdRDBkrCTi1FoajSTBzLcVTpjO4MBCMC7f4pDOIPzgBoX8JjG7X6uZRJ8EBxsi8+DR1JuwjnzOQ==",
|
||||
"path": "system.collections.immutable/7.0.0",
|
||||
"hashPath": "system.collections.immutable.7.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Formats.Asn1/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
|
||||
"path": "system.formats.asn1/5.0.0",
|
||||
"hashPath": "system.formats.asn1.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.IdentityModel.Tokens.Jwt/8.7.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-8dKL3A9pVqYCJIXHd4H2epQqLxSvKeNxGonR0e5g89yMchyvsM/NLuB06otx29BicUd6+LUJZgNZmvYjjPsPGg==",
|
||||
"path": "system.identitymodel.tokens.jwt/8.7.0",
|
||||
"hashPath": "system.identitymodel.tokens.jwt.8.7.0.nupkg.sha512"
|
||||
},
|
||||
"System.Memory/4.5.5": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
|
||||
"path": "system.memory/4.5.5",
|
||||
"hashPath": "system.memory.4.5.5.nupkg.sha512"
|
||||
},
|
||||
"System.Runtime.CompilerServices.Unsafe/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
|
||||
"path": "system.runtime.compilerservices.unsafe/5.0.0",
|
||||
"hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Security.AccessControl/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
|
||||
"path": "system.security.accesscontrol/5.0.0",
|
||||
"hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Security.Cryptography.Cng/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
|
||||
"path": "system.security.cryptography.cng/5.0.0",
|
||||
"hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Security.Principal.Windows/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
|
||||
"path": "system.security.principal.windows/5.0.0",
|
||||
"hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"ZstdSharp.Port/0.7.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-U9Ix4l4cl58Kzz1rJzj5hoVTjmbx1qGMwzAcbv1j/d3NzrFaESIurQyg+ow4mivCgkE3S413y+U9k4WdnEIkRA==",
|
||||
"path": "zstdsharp.port/0.7.3",
|
||||
"hashPath": "zstdsharp.port.0.7.3.nupkg.sha512"
|
||||
},
|
||||
"APlugins/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Entity/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Hotfix/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
BIN
GameServer/Bin/Debug/net9.0/Main.dll
Normal file
BIN
GameServer/Bin/Debug/net9.0/Main.dll
Normal file
Binary file not shown.
BIN
GameServer/Bin/Debug/net9.0/Main.exe
Normal file
BIN
GameServer/Bin/Debug/net9.0/Main.exe
Normal file
Binary file not shown.
BIN
GameServer/Bin/Debug/net9.0/Main.pdb
Normal file
BIN
GameServer/Bin/Debug/net9.0/Main.pdb
Normal file
Binary file not shown.
18
GameServer/Bin/Debug/net9.0/Main.runtimeconfig.json
Normal file
18
GameServer/Bin/Debug/net9.0/Main.runtimeconfig.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net9.0",
|
||||
"frameworks": [
|
||||
{
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "9.0.0"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App",
|
||||
"version": "9.0.0"
|
||||
}
|
||||
],
|
||||
"configProperties": {
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
BIN
GameServer/Bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll
Normal file
BIN
GameServer/Bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll
Normal file
Binary file not shown.
BIN
GameServer/Bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll
Normal file
BIN
GameServer/Bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll
Normal file
Binary file not shown.
BIN
GameServer/Bin/Debug/net9.0/MongoDB.Bson.dll
Normal file
BIN
GameServer/Bin/Debug/net9.0/MongoDB.Bson.dll
Normal file
Binary file not shown.
BIN
GameServer/Bin/Debug/net9.0/MongoDB.Driver.dll
Normal file
BIN
GameServer/Bin/Debug/net9.0/MongoDB.Driver.dll
Normal file
Binary file not shown.
91
GameServer/Bin/Debug/net9.0/NLog.config
Normal file
91
GameServer/Bin/Debug/net9.0/NLog.config
Normal file
@ -0,0 +1,91 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd">
|
||||
<targets async="true">
|
||||
<target name="ServerDebug" xsi:type="File"
|
||||
encoding="UTF-8"
|
||||
createDirs="true"
|
||||
autoFlush="false"
|
||||
keepFileOpen="true"
|
||||
concurrentWrites="true"
|
||||
openFileCacheTimeout="30"
|
||||
openFileFlushTimeout="60"
|
||||
fileName="${basedir}/../Logs/Server/Server${date:format=yyyyMMdd}/${logger}.${var:appId}.${date:format=yyyyMMddHH}.Debug.log"
|
||||
layout="${longdate} ${callsite:className=false:methodName=false:fileName=true:includeSourcePath=false:skipFrames=2} ${message}" />
|
||||
</targets>
|
||||
<targets async="true">
|
||||
<target name="ServerInfo" xsi:type="File"
|
||||
encoding="UTF-8"
|
||||
createDirs="true"
|
||||
autoFlush="false"
|
||||
keepFileOpen="true"
|
||||
concurrentWrites="true"
|
||||
openFileCacheTimeout="30"
|
||||
openFileFlushTimeout="60"
|
||||
fileName="${basedir}/../Logs/Server/Server${date:format=yyyyMMdd}/${logger}.${var:appId}.${date:format=yyyyMMddHH}.Info.log"
|
||||
layout="${longdate} ${callsite:className=false:methodName=false:fileName=true:includeSourcePath=false:skipFrames=2} ${message}" />
|
||||
</targets>
|
||||
<targets async="true">
|
||||
<target name="ServerWarn" xsi:type="File"
|
||||
encoding="UTF-8"
|
||||
createDirs="true"
|
||||
autoFlush="false"
|
||||
keepFileOpen="true"
|
||||
concurrentWrites="true"
|
||||
openFileCacheTimeout="30"
|
||||
openFileFlushTimeout="60"
|
||||
fileName="${basedir}/../Logs/Server/Server${date:format=yyyyMMdd}/${logger}.${var:appId}.${date:format=yyyyMMddHH}.Warn.log"
|
||||
layout="${longdate} ${callsite:className=false:methodName=false:fileName=true:includeSourcePath=false:skipFrames=2} ${message}" />
|
||||
</targets>
|
||||
<targets async="true">
|
||||
<target name="ServerError" xsi:type="File"
|
||||
encoding="UTF-8"
|
||||
createDirs="true"
|
||||
autoFlush="false"
|
||||
keepFileOpen="true"
|
||||
concurrentWrites="true"
|
||||
openFileCacheTimeout="30"
|
||||
openFileFlushTimeout="60"
|
||||
fileName="${basedir}/../Logs/Server/Server${date:format=yyyyMMdd}/${logger}.${var:appId}.${date:format=yyyyMMddHH}.Error.log"
|
||||
layout="${longdate} ${callsite:className=false:methodName=false:fileName=true:includeSourcePath=false:skipFrames=2} ${message}" />
|
||||
</targets>
|
||||
<targets async="true">
|
||||
<target name="ServerTrace" xsi:type="File"
|
||||
encoding="UTF-8"
|
||||
createDirs="true"
|
||||
autoFlush="false"
|
||||
keepFileOpen="true"
|
||||
concurrentWrites="true"
|
||||
openFileCacheTimeout="30"
|
||||
openFileFlushTimeout="60"
|
||||
fileName="${basedir}/../Logs/Server/Server${date:format=yyyyMMdd}/${logger}.${var:appId}.${date:format=yyyyMMddHH}.Trace.log"
|
||||
layout="${longdate} ${callsite:className=false:methodName=false:fileName=true:includeSourcePath=false:skipFrames=2} ${message}" />
|
||||
</targets>
|
||||
<targets async="true">
|
||||
<target name="ConsoleColor" xsi:type="ColoredConsole"
|
||||
useDefaultRowHighlightingRules="false"
|
||||
layout="${longdate} ${callsite:className=false:methodName=false:fileName=true:includeSourcePath=false:skipFrames=2} ${message}">
|
||||
<highlight-row condition="level == LogLevel.Debug" foregroundColor="DarkGreen" />
|
||||
<highlight-row condition="level == LogLevel.Info" foregroundColor="Gray" />
|
||||
<highlight-row condition="level == LogLevel.Warn" foregroundColor="Yellow" />
|
||||
<highlight-row condition="level == LogLevel.Error" foregroundColor="DarkRed" />
|
||||
<highlight-row condition="level == LogLevel.Fatal" foregroundColor="Red" />
|
||||
</target>
|
||||
</targets>
|
||||
<rules>
|
||||
<!-- 控制台 调试或编辑器启动的时候会调用-->
|
||||
<logger ruleName="ConsoleTrace" name="Server" level="Trace" writeTo="ConsoleColor" />
|
||||
<logger ruleName="ConsoleDebug" name="Server" level="Debug" writeTo="ConsoleColor" />
|
||||
<logger ruleName="ConsoleInfo" name="Server" level="Info" writeTo="ConsoleColor" />
|
||||
<logger ruleName="ConsoleWarn" name="Server" level="Warn" writeTo="ConsoleColor" />
|
||||
<logger ruleName="ConsoleError" name="Server" level="Error" writeTo="ConsoleColor" />
|
||||
<!-- 服务端日志输出文件 发布到服务器后会调用-->
|
||||
<logger ruleName="ServerDebug" name="Server" level="Debug" writeTo="ServerDebug" />
|
||||
<logger ruleName="ServerTrace" name="Server" level="Trace" writeTo="ServerTrace" />
|
||||
<logger ruleName="ServerInfo" name="Server" level="Info" writeTo="ServerInfo" />
|
||||
<logger ruleName="ServerWarn" name="Server" level="Warn" writeTo="ServerWarn" />
|
||||
<logger ruleName="ServerError" name="Server" level="Error" writeTo="ServerError" />
|
||||
</rules>
|
||||
</nlog>
|
BIN
GameServer/Bin/Debug/net9.0/NLog.dll
Normal file
BIN
GameServer/Bin/Debug/net9.0/NLog.dll
Normal file
Binary file not shown.
3483
GameServer/Bin/Debug/net9.0/NLog.xsd
Normal file
3483
GameServer/Bin/Debug/net9.0/NLog.xsd
Normal file
File diff suppressed because it is too large
Load Diff
BIN
GameServer/Bin/Debug/net9.0/Newtonsoft.Json.dll
Normal file
BIN
GameServer/Bin/Debug/net9.0/Newtonsoft.Json.dll
Normal file
Binary file not shown.
BIN
GameServer/Bin/Debug/net9.0/SharpCompress.dll
Normal file
BIN
GameServer/Bin/Debug/net9.0/SharpCompress.dll
Normal file
Binary file not shown.
BIN
GameServer/Bin/Debug/net9.0/Snappier.dll
Normal file
BIN
GameServer/Bin/Debug/net9.0/Snappier.dll
Normal file
Binary file not shown.
BIN
GameServer/Bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll
Normal file
BIN
GameServer/Bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll
Normal file
Binary file not shown.
BIN
GameServer/Bin/Debug/net9.0/ZstdSharp.dll
Normal file
BIN
GameServer/Bin/Debug/net9.0/ZstdSharp.dll
Normal file
Binary file not shown.
BIN
GameServer/Bin/Debug/net9.0/protobuf-net.Core.dll
Normal file
BIN
GameServer/Bin/Debug/net9.0/protobuf-net.Core.dll
Normal file
Binary file not shown.
BIN
GameServer/Bin/Debug/net9.0/protobuf-net.dll
Normal file
BIN
GameServer/Bin/Debug/net9.0/protobuf-net.dll
Normal file
Binary file not shown.
@ -0,0 +1,4 @@
|
||||
2025-03-25 16:45:05.1461 初始化鉴权服务器组件
|
||||
2025-03-25 16:45:05.3997 初始化鉴权服务器组件
|
||||
2025-03-25 16:45:05.8064 初始网关(Gate)服务器组件
|
||||
2025-03-25 16:45:06.2004 初始网关(Gate)服务器组件
|
@ -0,0 +1,21 @@
|
||||
2025-03-25 16:43:48.5270 System.Net.Sockets.SocketException (10049): 在其上下文中,该请求的地址无效。
|
||||
at System.Net.Sockets.Socket.UpdateStatusAfterSocketErrorAndThrowException(SocketError error, Boolean disconnectOnFailure, String callerName)
|
||||
at System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
|
||||
at System.Net.Sockets.Socket.Bind(EndPoint localEP)
|
||||
at Fantasy.Network.TCP.TCPServerNetwork.Initialize(NetworkTarget networkTarget, IPEndPoint address)
|
||||
at Fantasy.Network.NetworkProtocolFactory.CreateServer(Scene scene, NetworkProtocolType protocolType, NetworkTarget networkTarget, String bindIp, Int32 port)
|
||||
at Fantasy.Scene.Create(Process process, MachineConfig machineConfig, SceneConfig sceneConfig)
|
||||
at Fantasy.Platform.Net.Process.Create(UInt32 processConfigId)
|
||||
at Fantasy.Platform.Net.Entry.StartProcess()
|
||||
at Fantasy.Async.FTask.InnerCoroutine()
|
||||
at Fantasy.Async.FTask.InnerCoroutine()
|
||||
at Fantasy.Platform.Net.Entry.StartProcess()
|
||||
at Fantasy.Platform.Net.Process.Create(UInt32 processConfigId)
|
||||
at Fantasy.Scene.Create(Process process, MachineConfig machineConfig, SceneConfig sceneConfig)
|
||||
at Fantasy.Scene.SetScheduler(Scene scene, String sceneRuntimeType)
|
||||
at Fantasy.Scene.Initialize()
|
||||
at Fantasy.SingleCollection.SingleCollectionComponent.Initialize()
|
||||
at Fantasy.Assembly.AssemblySystem.Register(Object obj)
|
||||
at Fantasy.SingleCollection.SingleCollectionComponent.Load(Int64 assemblyIdentity)
|
||||
at Fantasy.SingleCollection.SingleCollectionComponent.<>c__DisplayClass5_0.<Load>b__0()
|
||||
at Fantasy.ThreadSynchronizationContext.Update()
|
@ -0,0 +1,13 @@
|
||||
2025-03-25 16:43:47.9511 初始化序列化器成功,数量为:2
|
||||
2025-03-25 16:45:04.0820 初始化序列化器成功,数量为:2
|
||||
2025-03-25 16:45:04.7487 SceneConfigId = 1001 networkTarget = Inner TCPServer Listen 127.0.0.1:11001
|
||||
2025-03-25 16:45:04.9620 SceneConfigId = 1001 networkTarget = Outer KCPServer Listen 127.0.0.1:21001
|
||||
2025-03-25 16:45:05.1461 RSA密钥导入成功
|
||||
2025-03-25 16:45:05.1957 SceneConfigId = 1002 networkTarget = Inner TCPServer Listen 127.0.0.1:11002
|
||||
2025-03-25 16:45:05.3997 SceneConfigId = 1002 networkTarget = Outer KCPServer Listen 127.0.0.1:21002
|
||||
2025-03-25 16:45:05.3997 RSA密钥导入成功
|
||||
2025-03-25 16:45:05.6180 SceneConfigId = 1010 networkTarget = Inner TCPServer Listen 127.0.0.1:11010
|
||||
2025-03-25 16:45:05.8064 SceneConfigId = 1010 networkTarget = Outer KCPServer Listen 127.0.0.1:21010
|
||||
2025-03-25 16:45:06.0134 SceneConfigId = 1011 networkTarget = Inner TCPServer Listen 127.0.0.1:11011
|
||||
2025-03-25 16:45:06.2004 SceneConfigId = 1011 networkTarget = Outer KCPServer Listen 127.0.0.1:21011
|
||||
2025-03-25 16:45:06.2004 Process:1 Startup Complete SceneCount:4
|
BIN
GameServer/Bin/Release/net9.0/APlugins.dll
Normal file
BIN
GameServer/Bin/Release/net9.0/APlugins.dll
Normal file
Binary file not shown.
BIN
GameServer/Bin/Release/net9.0/APlugins.pdb
Normal file
BIN
GameServer/Bin/Release/net9.0/APlugins.pdb
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user