ソースを参照

v2.2.1-preview1

1.添加sourcelink
2.调整车辆定位信息解析
3.修复0x1504车辆行驶记录信息
tags/v2.2.1
SmallChi(Koike) 3年前
コミット
b0e5237253
6個のファイルの変更25行の追加12行の削除
  1. +1
    -0
      .gitignore
  2. +4
    -4
      README.md
  3. +3
    -0
      publish.bat
  4. +11
    -0
      src/Info.props
  5. +3
    -4
      src/JT809.Protocol.Extensions/JT809.Protocol.Extensions.JT1078/JT809.Protocol.Extensions.JT1078.csproj
  6. +3
    -4
      src/JT809.Protocol/JT809.Protocol.csproj

+ 1
- 0
.gitignore ファイルの表示

@@ -286,3 +286,4 @@ __pycache__/
*.btm.cs
*.odx.cs
*.xsd.cs
/nupkgs

+ 4
- 4
README.md ファイルの表示

@@ -292,10 +292,10 @@ public class JT809_2019_Config : JT809GlobalConfigBase

## NuGet安装

| Package Name | Version | Downloads
|--------------| ------- | ----
| Install-Package JT809 | ![JT809](https://img.shields.io/nuget/v/JT809.svg) | ![JT809](https://img.shields.io/nuget/dt/JT809.svg)
| Install-Package JT809.Protocol.Extensions.JT1078 | ![JT809.Protocol.Extensions.JT1078](https://img.shields.io/nuget/v/JT809.Protocol.Extensions.JT1078.svg) | ![JT809](https://img.shields.io/nuget/dt/JT809.Protocol.Extensions.JT1078.svg) |
| Package Name | Version | Pre Version |Downloads
|--------------| ------- | ------- |----
| Install-Package JT809 | ![JT809](https://img.shields.io/nuget/v/JT809.svg) | ![JT809](https://img.shields.io/nuget/vpre/JT809.svg) |![JT809](https://img.shields.io/nuget/dt/JT809.svg)
| Install-Package JT809.Protocol.Extensions.JT1078 | ![JT809.Protocol.Extensions.JT1078](https://img.shields.io/nuget/v/JT809.Protocol.Extensions.JT1078.svg) | ![JT809.Protocol.Extensions.JT1078](https://img.shields.io/nuget/vpre/JT809.Protocol.Extensions.JT1078.svg) |![JT809](https://img.shields.io/nuget/dt/JT809.Protocol.Extensions.JT1078.svg) |

## 使用BenchmarkDotNet性能测试报告(只是玩玩,不能当真)



+ 3
- 0
publish.bat ファイルの表示

@@ -0,0 +1,3 @@
dotnet pack .\src\JT809.Protocol\JT809.Protocol.csproj -c Release --output nupkgs
dotnet pack .\src\JT809.Protocol.Extensions\JT809.Protocol.Extensions.JT1078\JT809.Protocol.Extensions.JT1078.csproj -c Release --output nupkgs
pause

+ 11
- 0
src/Info.props ファイルの表示

@@ -16,5 +16,16 @@
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageReadmeFile>README.md</PackageReadmeFile>
<DebugSymbols>true</DebugSymbols>
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<Deterministic>true</Deterministic>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
</ItemGroup>
</Project>

+ 3
- 4
src/JT809.Protocol.Extensions/JT809.Protocol.Extensions.JT1078/JT809.Protocol.Extensions.JT1078.csproj ファイルの表示

@@ -6,14 +6,13 @@
<Description>基于JT809协议、GB809协议扩展的视频消息协议</Description>
<PackageReleaseNotes>基于JT809协议、GB809协议扩展的视频消息协议</PackageReleaseNotes>
<DocumentationFile>JT809.Protocol.Extensions.JT1078.xml</DocumentationFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<NoWarn>1701;1702;1591</NoWarn>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\..\..\README.md" Pack="true" PackagePath=""/>
<None Include="..\..\..\LICENSE" Pack="true" PackagePath=""/>
</ItemGroup>

<ItemGroup>


+ 3
- 4
src/JT809.Protocol/JT809.Protocol.csproj ファイルの表示

@@ -6,6 +6,7 @@
<Description>JT809协议、GB809协议、道路运输车辆卫星定位系统-平台数据交换协议(支持2011、2019版本) </Description>
<PackageReleaseNotes>JT809协议、GB809协议、道路运输车辆卫星定位系统-平台数据交换协议(支持2011、2019版本) </PackageReleaseNotes>
<DocumentationFile>JT809.Protocol.xml</DocumentationFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<NoWarn>1701;1702;1591</NoWarn>
</PropertyGroup>
@@ -30,10 +31,8 @@
<None Remove="Enums\**" />
<None Remove="Escape\**" />
<None Remove="ProtocolPacket\**" />
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\..\README.md" Pack="true" PackagePath=""/>
<None Include="..\..\LICENSE" Pack="true" PackagePath=""/>
</ItemGroup>
<ItemGroup>


読み込み中…
キャンセル
保存