feat:版本号管理;日志输出

This commit is contained in:
2026-05-17 02:32:27 +08:00
parent 2dd378b17c
commit b32ed8bb6e
3 changed files with 68 additions and 3 deletions

View File

@@ -1,4 +1,5 @@
using System; using System;
using System.Reflection;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Threading; using System.Threading;
@@ -21,6 +22,15 @@ namespace NfcAime.Dll {
{ {
AllocConsole(); AllocConsole();
// 读取如 "1.0.0-a1b2c3d-master" 这种详细版本信息
var versionString = Assembly.GetExecutingAssembly()
.GetCustomAttribute<AssemblyInformationalVersionAttribute>()?
.InformationalVersion;
Console.WriteLine($"PN532 Aime Reader - Version {versionString}");
Console.WriteLine("Make With Love By ZCROM - FROM MikuNet");
Console.WriteLine("---------------------------------------------");
Console.WriteLine($"{Config.ReaderCOM} Baud:{Config.ReaderBaud} Mode:{(Config.IDmMode == 1 ? "IDmMode" : "AccessCodeMode")}");
reader = new AimeReader(port: Config.ReaderCOM, baud: Config.ReaderBaud); reader = new AimeReader(port: Config.ReaderCOM, baud: Config.ReaderBaud);
return 0; return 0;
} }

View File

@@ -157,4 +157,61 @@
<Target Name="DllExportRPkgDynamicImport" BeforeTargets="PostBuildEvent" DependsOnTargets="GetFrameworkPaths" Condition="'$(DllExportModImported)'!='true' And '$(DllExportRPkgDyn)'!='false'"> <Target Name="DllExportRPkgDynamicImport" BeforeTargets="PostBuildEvent" DependsOnTargets="GetFrameworkPaths" Condition="'$(DllExportModImported)'!='true' And '$(DllExportRPkgDyn)'!='false'">
<MSBuild BuildInParallel="true" UseResultsCache="true" Projects="$(MSBuildProjectFullPath)" Properties="Configuration=$(Configuration);DllExportRPkgDyn=true" Targets="Build" /> <MSBuild BuildInParallel="true" UseResultsCache="true" Projects="$(MSBuildProjectFullPath)" Properties="Configuration=$(Configuration);DllExportRPkgDyn=true" Targets="Build" />
</Target> </Target>
<Target Name="InjectGitVersion" BeforeTargets="CoreCompile">
<!-- 1. 获取最新 tag (如果有的话) 作为基础版本 -->
<Exec Command="git describe --tags --abbrev=0" ConsoleToMSBuild="true" StandardOutputImportance="low" IgnoreExitCode="true">
<Output TaskParameter="ConsoleOutput" PropertyName="GitBaseVersion" />
</Exec>
<PropertyGroup>
<!-- 如果没有Tag默认设为 1.0.0 -->
<GitBaseVersion Condition="'$(GitBaseVersion)' == '' Or $(GitBaseVersion.Contains('fatal'))">1.0.0</GitBaseVersion>
<!-- 移除可能存在的 v 前缀 (例如把 v1.2 变成 1.2) -->
<GitBaseVersion>$([System.Text.RegularExpressions.Regex]::Replace($(GitBaseVersion), `^v`, ``))</GitBaseVersion>
</PropertyGroup>
<!-- 2. 获取自上一个 Tag 之后的 Commit 数量 (如果 Tag=1.0.0, 这里算的就是 Patch 号) -->
<Exec Command="git rev-list --count $(GitBaseVersion)..HEAD" ConsoleToMSBuild="true" StandardOutputImportance="low" IgnoreExitCode="true" Condition="'$(GitBaseVersion)' != '1.0.0'">
<Output TaskParameter="ConsoleOutput" PropertyName="GitPatchCount" />
</Exec>
<!-- 如果连 Tag 都没有,就退化为使用全部 commit 数量 -->
<Exec Command="git rev-list --count HEAD" ConsoleToMSBuild="true" StandardOutputImportance="low" IgnoreExitCode="true" Condition="'$(GitBaseVersion)' == '1.0.0' Or '$(GitPatchCount)' == '' Or $(GitPatchCount.Contains('fatal'))">
<Output TaskParameter="ConsoleOutput" PropertyName="GitPatchCount" />
</Exec>
<!-- 3. 获取 Git 的简短 Commit Hash 和分支名 -->
<Exec Command="git rev-parse --short HEAD" ConsoleToMSBuild="true" StandardOutputImportance="low" IgnoreExitCode="true">
<Output TaskParameter="ConsoleOutput" PropertyName="GitCommitHash" />
</Exec>
<Exec Command="git rev-parse --abbrev-ref HEAD" ConsoleToMSBuild="true" StandardOutputImportance="low" IgnoreExitCode="true">
<Output TaskParameter="ConsoleOutput" PropertyName="GitBranchName" />
</Exec>
<!-- 异常情况回退默认值 -->
<PropertyGroup>
<GitCommitHash Condition="'$(GitCommitHash)' == '' Or $(GitCommitHash.Contains('fatal'))">unknown</GitCommitHash>
<GitBranchName Condition="'$(GitBranchName)' == '' Or $(GitBranchName.Contains('fatal'))">local</GitBranchName>
<GitPatchCount Condition="'$(GitPatchCount)' == '' Or $(GitPatchCount.Contains('fatal'))">0</GitPatchCount>
</PropertyGroup>
<!-- 动态为程序集附加完整版本号属性 -->
<ItemGroup>
<!-- 标准版本号: Tag号.Patch级.0 (如: 1.2.3) -->
<AssemblyAttributes Include="System.Reflection.AssemblyVersionAttribute">
<_Parameter1>$(GitBaseVersion).$(GitPatchCount)</_Parameter1>
</AssemblyAttributes>
<AssemblyAttributes Include="System.Reflection.AssemblyFileVersionAttribute">
<_Parameter1>$(GitBaseVersion).$(GitPatchCount)</_Parameter1>
</AssemblyAttributes>
<!-- Informational 详细版本: 1.2.3-master-a1b2c3d -->
<AssemblyAttributes Include="System.Reflection.AssemblyInformationalVersionAttribute">
<_Parameter1>$(GitBaseVersion).$(GitPatchCount)-$(GitBranchName)-$(GitCommitHash)</_Parameter1>
</AssemblyAttributes>
</ItemGroup>
<WriteCodeFragment Language="C#" OutputFile="$(IntermediateOutputPath)VersionInfo.g.cs" AssemblyAttributes="@(AssemblyAttributes)" />
<ItemGroup>
<Compile Include="$(IntermediateOutputPath)VersionInfo.g.cs" />
</ItemGroup>
</Target>
</Project> </Project>

View File

@@ -30,6 +30,4 @@ using System.Runtime.InteropServices;
// //
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]