gpt4 book ai didi

c# - 预提交 Hook 修改 AssemblyInfo

转载 作者:太空宇宙 更新时间:2023-11-03 20:05:09 25 4
gpt4 key购买 nike

我有一个使用 ruby​​ gem semver2 定义内部版本号的预提交 Hook . gem 基本上只是创建一个名为 .semver 的文件,用于存储包的版本信息。

Hook 根据一些日期/提交参数生成内部版本号,然后使用此信息更改 AssemblyInfo.cs,然后在提交之前添加更改后的文件。

我有几个问题:

  1. 就 .NET 而言,使用 Hook 修改我的 AssemblyInfo 文件是否存在危险?

  2. 这是应该使用预提交 Hook 还是其他 Hook 来完成?

  3. 如何让这个 Hook 在 --amendmergerebase 提交时表现不同?

  4. 我怎样才能让这个钩子(Hook)在一个分支一个分支的基础上表现不同?

  5. 您有不同的解决方案来自动生成内部版本号吗?

钩子(Hook):

#!/bin/sh
#
# Append build number to semver version
#

# check semver has been initiated
if [ -f .semver ]; then
echo `semver`
else
echo `semver init`
echo `semver inc minor`
echo `semver pre 'alpha.1'`
echo `semver`
fi

# grab date string
date_str=`date +%y%m.%d.`

# grab commit count +1
build_num=$(git rev-list --since="00:00:00" HEAD --count)
let "build_num += 1"

# generate build & apply to semver
build=$date_str$build_num
semver meta $build

# define version strings
semver_str=$(semver)
ver_full=${semver_str#"v"}
cut_meta=$(cut -d "+" -f 1 <<<"$ver_full")
ver_small=$(cut -d "-" -f 1 <<<"$cut_meta")

# find AssemblyInfo & line number for AssemblyVersion
line=$(grep -n "AssemblyVersion(" "Properties/AssemblyInfo.cs")
line_num=$(cut -d ":" -f 1 <<<"$line")

# edit AssemblyVersion
new_line='[assembly: AssemblyVersion("'$ver_small'")]'
sed -i "${line_num}s/.*/$new_line/" "Properties/AssemblyInfo.cs"

# find line number for Semver
line=$(grep -n "Semver(" "Properties/AssemblyInfo.cs")
line_num=$(cut -d ":" -f 1 <<<"$line")

# edit Semver
new_line='[assembly: Semver("'$ver_full'")]'
sed -i "${line_num}s/.*/$new_line/" "Properties/AssemblyInfo.cs"

# add files
git add .semver
git add "Properties/AssemblyInfo.cs"

AssemblyInfo.cs

using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using Authenticator.Properties;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("")]
[assembly: AssemblyCopyright("")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("b6f9caad-fbfc-455a-8d69-f795fb9812ad")]

// This assembly uses the Semantic Versioning v2.0.0
// For more information on Semantic Versioning please see http://semver.org/
[assembly: AssemblyVersion("0.1.0")]
[assembly: Semver("0.1.0-alpha.1.0.0+1406.04.15")]

最佳答案

我的看法。

  1. 不,通常的做法是在构建期间就在编译之前编辑 AssemblyInfo 文件
  2. 提交路径的技术很有趣,但也有一些缺点:并非所有 Git 实现都能保证 Hook 有效(想想 Visual Studio Online)并且您的脚本有效。
  3. 参见#5。
  4. 参见#5。
  5. 如果您在构建过程中编辑了 AssemblyInfo 文件,那么无论如何它都会起作用。您的脚本需要查询 Git 的当前状态(哪个分支和提交)以选择正确的 SemVer 值。

I blogged an example它展示了如何连接到 MSBuild 并更改 AssemblyInfo 文件,您可以从中找到许多其他示例、工具和引用。

关于c# - 预提交 Hook 修改 AssemblyInfo,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24067939/

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