add submodule: python bsdl parser
This commit is contained in:
parent
13a71368da
commit
10918a997c
|
@ -0,0 +1,3 @@
|
||||||
|
[submodule "server/src/BsdlParser"]
|
||||||
|
path = server/src/BsdlParser
|
||||||
|
url = git@github.com:SikongJueluo/python-bsdl-parser.git
|
|
@ -11,6 +11,9 @@ clean:
|
||||||
rm -rf "server.test/obj"
|
rm -rf "server.test/obj"
|
||||||
rm -rf "dist"
|
rm -rf "dist"
|
||||||
|
|
||||||
|
update:
|
||||||
|
git submodule update --init --remote --recursive
|
||||||
|
|
||||||
# 生成Restful API到网页客户端
|
# 生成Restful API到网页客户端
|
||||||
gen-api:
|
gen-api:
|
||||||
cd server && dotnet run &
|
cd server && dotnet run &
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
<PackageReference Include="NLog" Version="5.4.0" />
|
<PackageReference Include="NLog" Version="5.4.0" />
|
||||||
<PackageReference Include="NLog.Web.AspNetCore" Version="5.4.0" />
|
<PackageReference Include="NLog.Web.AspNetCore" Version="5.4.0" />
|
||||||
<PackageReference Include="NSwag.AspNetCore" Version="14.3.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" />
|
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.119" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit ac164eb16d7d9a9a387ff1f62cef249c65565bef
|
|
@ -41,6 +41,7 @@ namespace Common
|
||||||
0x0f, 0x8f, 0x4f, 0xcf, 0x2f, 0xaf, 0x6f, 0xef,
|
0x0f, 0x8f, 0x4f, 0xcf, 0x2f, 0xaf, 0x6f, 0xef,
|
||||||
0x1f, 0x9f, 0x5f, 0xdf, 0x3f, 0xbf, 0x7f, 0xff
|
0x1f, 0x9f, 0x5f, 0xdf, 0x3f, 0xbf, 0x7f, 0xff
|
||||||
};
|
};
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 整数转成二进制字节数组
|
/// 整数转成二进制字节数组
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in New Issue