add submodule: python bsdl parser

This commit is contained in:
SikongJueluo 2025-05-08 21:54:35 +08:00
parent 13a71368da
commit 10918a997c
No known key found for this signature in database
5 changed files with 9 additions and 0 deletions

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "server/src/BsdlParser"]
path = server/src/BsdlParser
url = git@github.com:SikongJueluo/python-bsdl-parser.git

View File

@ -11,6 +11,9 @@ clean:
rm -rf "server.test/obj"
rm -rf "dist"
update:
git submodule update --init --remote --recursive
# 生成Restful API到网页客户端
gen-api:
cd server && dotnet run &

View File

@ -21,6 +21,7 @@
<PackageReference Include="NLog" Version="5.4.0" />
<PackageReference Include="NLog.Web.AspNetCore" Version="5.4.0" />
<PackageReference Include="NSwag.AspNetCore" Version="14.3.0" />
<PackageReference Include="pythonnet" Version="3.0.5" />
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.119" />
</ItemGroup>

1
server/src/BsdlParser Submodule

@ -0,0 +1 @@
Subproject commit ac164eb16d7d9a9a387ff1f62cef249c65565bef

View File

@ -41,6 +41,7 @@ namespace Common
0x0f, 0x8f, 0x4f, 0xcf, 0x2f, 0xaf, 0x6f, 0xef,
0x1f, 0x9f, 0x5f, 0xdf, 0x3f, 0xbf, 0x7f, 0xff
};
/// <summary>
/// 整数转成二进制字节数组
/// </summary>