修改IServer; 移除了Docs中生成的xml文件

This commit is contained in:
milimoe 2024-08-16 00:08:44 +08:00
parent 924a45413a
commit d06f8417d6
Signed by: milimoe
GPG Key ID: 05D280912DA6C69E
3 changed files with 5 additions and 3497 deletions

File diff suppressed because it is too large Load Diff

View File

@ -16,7 +16,7 @@
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AssemblyName>$(MSBuildProjectName)</AssemblyName> <AssemblyName>$(MSBuildProjectName)</AssemblyName>
<GenerateDocumentationFile>True</GenerateDocumentationFile> <GenerateDocumentationFile>True</GenerateDocumentationFile>
<DocumentationFile>Docs\FunGame.Core.xml</DocumentationFile> <DocumentationFile></DocumentationFile>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

View File

@ -5,7 +5,9 @@
/// </summary> /// </summary>
public interface IServer public interface IServer
{ {
public string[] GameModuleList { get; } /// <summary>
public string[] GameMapList { get; } /// 一个服务器标识秘钥
/// </summary>
public string SecretKey { get; }
} }
} }