C#类库项目中实现版本号每次编译时自动增加

在C#类库项目中实现版本号每次编译时自动增加,可以使用MSBuild的目标或脚本来更新版本号。下面提供一个详细的方法,使用MSBuild脚本在每次编译时更新版本号。

方法:使用MSBuild任务更新版本号

1. 修改项目文件(.csproj)

首先,打开你的C#类库项目文件(.csproj),添加以下内容以使用MSBuild任务在编译前自动更新版本号。

复制代码

xml

复制代码

<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>net5.0</TargetFramework> <!-- 默认版本号 --> <Version>1.0.0.0</Version> <FileVersion>1.0.0.0</FileVersion> <AssemblyVersion>1.0.0.0</AssemblyVersion> </PropertyGroup> <ItemGroup> <None Update="Version.txt"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> </ItemGroup> <Target Name="IncrementVersion" BeforeTargets="BeforeBuild"> <Exec Command="powershell -ExecutionPolicy Bypass -File UpdateVersion.ps1" /> </Target> </Project>

2. 创建版本号文件

在项目根目录下创建一个名为Version.txt的文件,初始内容如下:

1.0.0.0

3. 编写PowerShell脚本

在项目根目录下创建一个名为UpdateVersion.ps1的PowerShell脚本,用于更新版本号。脚本内容如下:

$versionFilePath = "Version.txt"

读取当前版本号

currentVersion = Get-Content versionFilePath

拆分版本号

versionParts = currentVersion -split '\.'

major = \[int\]versionParts[0]

minor = \[int\]versionParts[1]

build = \[int\]versionParts[2]

revision = \[int\]versionParts[3]

递增修订号

$revision++

更新版本号

newVersion = "major.minor.build.$revision"

将新版本号写入Version.txt

Set-Content versionFilePath newVersion

更新项目文件中的版本号属性

$projectFilePath = "YourProjectName.csproj" # 请将此行替换为你的实际项目文件名

projectFileContent = Get-Content projectFilePath

updatedProjectFileContent = projectFileContent -replace '<Version>.*<\/Version>', "<Version>$newVersion</Version>"

updatedProjectFileContent = updatedProjectFileContent -replace '<FileVersion>.*<\/FileVersion>', "<FileVersion>$newVersion</FileVersion>"

updatedProjectFileContent = updatedProjectFileContent -replace '<AssemblyVersion>.*<\/AssemblyVersion>', "<AssemblyVersion>$newVersion</AssemblyVersion>"

Set-Content projectFilePath updatedProjectFileContent

请注意,将脚本中的YourProjectName.csproj替换为实际的项目文件名。

整体流程解释:

  1. 项目文件(.csproj)修改

    • 配置了版本号属性(VersionFileVersionAssemblyVersion)。
    • 添加了一个MSBuild目标IncrementVersion,在每次编译前运行PowerShell脚本。
  2. Version.txt文件

    • 存储当前的版本号。
    • 初始内容为1.0.0.0
  3. PowerShell脚本(UpdateVersion.ps1)

    • 读取并解析当前版本号。
    • 递增修订号。
    • 更新Version.txt文件中的版本号。
    • 更新项目文件中的版本号属性。

这种方法通过每次编译前运行一个PowerShell脚本来自动递增版本号,实现了版本号的自动管理。

相关推荐
张雨zy31 分钟前
Vue 项目管理数据时,Cookie、Pinia 和 LocalStorage 三种常见的工具的选择
前端·javascript·vue.js
五月君_38 分钟前
Nuxt UI v4.3 发布:原生 AI 富文本编辑器来了,Vue 生态又添一员猛将!
前端·javascript·vue.js·人工智能·ui
!执行1 小时前
遇到 Git 提示大文件无法上传确实让人头疼
前端·github
坚持学习前端日记1 小时前
个人网站从零到盈利的成长策略
前端·程序人生
CamilleZJ1 小时前
eslint+prettier
前端·eslint·工程化·prettier
web小白成长日记2 小时前
深入理解 React 中的 Props:组件通信的桥梁
前端·javascript·react.js
tjswk20082 小时前
在ios上动态插入元素的列表使用:last-child样式可能不能及时生效
前端
小小荧2 小时前
CSS 写 SQL 查询?后端慌了!
前端·sql
小高0072 小时前
🔥3 kB 换 120 ms 阻塞? Axios 还是 fetch?
前端·javascript·面试
千寻girling2 小时前
面试官 : “ Vue 选项式api 和 组合式api 什么区别? “
前端·vue.js·面试