6

我编写了一个从 SVN 存储库获取值的程序。现在我想用该值更新 AssemblyFileversion。

由于我无法在 Assemblyinfo.cs 中编写任何代码,我将如何更新 AssemblyFileVersion 的值。

我想实现这样的目标

..........................
// Version information for an assembly consists of the following four values:
//
//      Major Version
//      Minor Version 
//      Build Number
//      Revision
//
// You can specify all the values or you can default the Build and Revision Numbers 
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

 SvnInfoEventArgs info;
                    Uri repoURI = new Uri("ServerAddress");
                    svnClient.GetInfo(repoURI, out info);


[assembly: AssemblyVersion("1.0.0.0")]
    [assembly: AssemblyFileVersion(String.Format("{0}.{1}.{2}. {3}",
                                          major,minor,build,info.Revision))]
4

3 回答 3

4

我假设您正在尝试在这里生成一些构建系统 - 所以本质上,您需要使用 svn 编号修改 AssemblyInfo.cs 文件。

您可以为此创建 MS Build 任务:请参阅http://florent.clairambault.fr/insert-svn-version-and-build-number-in-your-c-assemblyinfo-file

有命令行实用程序 (SubWCRev) 也可用于基于关键字的替换($WCREV$ 用于修订) - 请参见此处的示例:http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-subwcrev-example 。 html

最后,您可能可以推出您的自定义代码(进行正则表达式搜索/替换)以执行某些(包括我)所做的相同操作 - 请在此处查看一个这样的示例:http: //www.codeproject.com/Articles/168528/自动保持组装修订与同步

于 2013-01-10T09:38:19.057 回答
2

我正在使用基于ant的构建系统,并且有一个关于更新AssemblyInfo.cs的类似问题。

我的构建系统已经生成了version.h文件,这些文件在构建时包含在其他项目中。对于 C#,我决定使用生成的VersionInfo.cs将版本信息注入到AssemblyInfo.cs中。

AssemblyInfo.cs (在指定 VersionInfo 常量后设置)

using System.Reflection;
using System.Runtime.InteropServices;

[assembly: AssemblyCompany(VersionInfo.Company)]
[assembly: AssemblyProduct(VersionInfo.ProductName)]
[assembly: AssemblyCopyright(VersionInfo.Copyright)]

[assembly: Guid("12345678-1234-1234-1234-1234567890ab")]

[assembly: AssemblyVersion(VersionInfo.product.FileVersion)]
[assembly: AssemblyFileVersion(VersionInfo.sdk.FileVersion)]

VersionInfo.cs (由ant构建系统动态生成)

// Shared Product Version Header
// Automatically Generated: Sat, 2 May 2015 15:09:09 EDT
// ReSharper disable CheckNamespace
// ReSharper disable InconsistentNaming
internal struct VersionInfo
{
  public const string Company = @"My Company Corp";
  public const string Copyright = @"Copyright (c) 2015 My Company Corp.  All rights reserved.";
  public const string ProductName = @"My Software Service";
  public const string SpecialBuild = @"";
  public const string ProductConfiguration = @"";
  public const string ProductCode = @"MSS";
  public const string ProductUrl = @"www.MyCompany.com";
  public const string ProductEmail = @"support@MyCompany.com";
  public const string ProductVendor = @"My Company Corp";
  internal struct product
  {
    public const string FileVersion = @"1.5.0.240";
  }
  internal struct sdk
  {
    public const string FileVersion = @"1.4.5.222";
  }
  internal struct service
  {
    public const string FileVersion = @"1.3.2.142";
  }
}

version.xml (蚂蚁导入 - 剪断)

<echo file="${artifacts.dir}\VersionInfo.cs" append="false">// Shared Product Version Header${line.separator}</echo>
<echo file="${artifacts.dir}\VersionInfo.cs" append="true">// Automatically Generated: ${version.generated.time}${line.separator}</echo>
<echo file="${artifacts.dir}\VersionInfo.cs" append="true">// ReSharper disable CheckNamespace${line.separator}</echo>
<echo file="${artifacts.dir}\VersionInfo.cs" append="true">// ReSharper disable InconsistentNaming${line.separator}</echo>
<echo file="${artifacts.dir}\VersionInfo.cs" append="true">internal struct VersionInfo${line.separator}</echo>
<echo file="${artifacts.dir}\VersionInfo.cs" append="true">{${line.separator}</echo>
<echo file="${artifacts.dir}\VersionInfo.cs" append="true">  public const string Company = @"${product.company}";${line.separator}</echo>
<echo file="${artifacts.dir}\VersionInfo.cs" append="true">  public const string Copyright = @"${product.copyright}";${line.separator}</echo>
 <!-- other version info here -->
<echo file="${artifacts.dir}\VersionInfo.cs" append="true">}${line.separator}</echo>

version.properties (指定产品版本信息的 ant 属性文件)

product.company=My Company Corp
product.copyright=Copyright (c) 2015 My Company Corp.  All rights reserved.
product.website=www.MyCompany.com
product.email=support@MyCompany.com
product.vendor=My Company Corp

product=1.5.0.240
service=1.3.2.142
sdk=1.4.5.222

C# 预构建事件 (将自动生成的 VersionInfo.cs 复制到项目属性目录)

@ECHO OFF
SETLOCAL
SET ARTDIR=$(ProjectDir)..\..\..\MySoftwareService\installer
SET VERCS=%ARTDIR%\VersionInfo.cs
ECHO Updating %VERCS%
xcopy /D /Y "%VERCS%" "$(ProjectDir)Properties"

MSBuild 扩展 (无!)

<!-- none, not required -->

顺便说一句,我的版本方案是:major.minor.revision.build 这不是 AssemblyInfo.cs 文件指定的内容。

于 2015-05-02T19:57:09.883 回答
1

您需要在构建过程中执行此操作。

由于您使用的是 Visual Studio,因此您已经在使用MSBuild,在这种情况下,MSBuild 扩展包有一个AssemblyInfo任务。

为了从 Subversion 获取修订,MSBuild 扩展包也有一个任务

或者,如果您使用 TeamCity 进行持续集成 (CI),它具有“AssemblyInfo 修补程序”构建功能。我猜大多数其他 CI 系统都会有类似的东西。

于 2013-01-10T09:37:58.483 回答