gpt4 book ai didi

visual-studio - MSBuild:如何从 AssmeblyInfo.cs 读取程序集版本和文件版本?

转载 作者:行者123 更新时间:2023-12-04 03:00:31 25 4
gpt4 key购买 nike

使用 MSBuild 脚本如何从 AssemblyInfo.cs 中获取 AssmeblyVersion 和 FileVersion?

最佳答案

Using MSBuild script how can we get AssmeblyVersion and FileVersion from AssemblyInfo.cs?



获取 AssmeblyVersion通过 MSBuild,您可以使用 GetAssemblyIdentity任务。

为此,请卸载您的项目。然后在项目的最后,就在结束标记之前 </Project> , 放置在脚本下面:
  <Target Name="GetAssmeblyVersion" AfterTargets="Build">
<GetAssemblyIdentity
AssemblyFiles="$(TargetPath)">
<Output
TaskParameter="Assemblies"
ItemName="MyAssemblyIdentities"/>
</GetAssemblyIdentity>

<Message Text="Assmebly Version: %(MyAssemblyIdentities.Version)"/>
</Target>

获取 FileVersion ,您可以添加自定义 MSBuild Inline Tasks要获得此信息,请编辑您的项目文件 .csproj , 添加如下代码:
  <UsingTask
TaskName="GetFileVersion"
TaskFactory="CodeTaskFactory"
AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.v4.0.dll">

<ParameterGroup>
<AssemblyPath ParameterType="System.String" Required="true" />
<Version ParameterType="System.String" Output="true" />
</ParameterGroup>
<Task>
<Using Namespace="System.Diagnostics" />
<Code Type="Fragment" Language="cs">
<![CDATA[
Log.LogMessage("Getting version details of assembly at: " + this.AssemblyPath, MessageImportance.High);

this.Version = FileVersionInfo.GetVersionInfo(this.AssemblyPath).FileVersion;
]]>
</Code>
</Task>
</UsingTask>



<Target Name="GetFileVersion" AfterTargets="Build">

<GetFileVersion AssemblyPath="$(TargetPath)">
<Output TaskParameter="Version" PropertyName="MyAssemblyFileVersion" />
</GetFileVersion>
<Message Text="File version is $(MyAssemblyFileVersion)" />
</Target>

使用这两个目标后,您将获得 AssmeblyVersionFileVersion来自 AssemblyInfo.cs :

enter image description here

注意:如果要获取特定dll的版本,可以更改 AssemblyFiles="$(TargetPath)"到:
<PropertyGroup>
<MyAssemblies>somedll\the.dll</MyAssemblies>
</PropertyGroup>

AssemblyFiles="@(MyAssemblies)"

希望这可以帮助。

关于visual-studio - MSBuild:如何从 AssmeblyInfo.cs 读取程序集版本和文件版本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49624054/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com