[Visual Studio 2017,.csproj属性]
要自动更新您的 PackageVersion/Version/AssemblyVersion 属性(或任何其他属性),首先,创建一个新Microsoft.Build.Utilities.Task
类,该类将获取您当前的内部版本号并发回更新后的编号(我建议仅为该类创建一个单独的项目)。
我手动更新major.minor 编号,但让MSBuild 自动更新内部版本号(1.1. 1、1.1. 2、1.1. 3等:)
using Microsoft.Build.Framework;
using System;
using System.Collections.Generic;
using System.Text;
public class RefreshVersion : Microsoft.Build.Utilities.Task
{
[Output]
public string NewVersionString { get; set; }
public string CurrentVersionString { get; set; }
public override bool Execute()
{
Version currentVersion = new Version(CurrentVersionString ?? "1.0.0");
DateTime d = DateTime.Now;
NewVersionString = new Version(currentVersion.Major,
currentVersion.Minor, currentVersion.Build+1).ToString();
return true;
}
}
然后调用您最近在 MSBuild 过程中创建的任务,在 .csproj 文件中添加下一个代码:
<Project Sdk="Microsoft.NET.Sdk">
...
<UsingTask TaskName="RefreshVersion" AssemblyFile="$(MSBuildThisFileFullPath)\..\..\<dll path>\BuildTasks.dll" />
<Target Name="RefreshVersionBuildTask" BeforeTargets="Pack" Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<RefreshVersion CurrentVersionString="$(PackageVersion)">
<Output TaskParameter="NewVersionString" PropertyName="NewVersionString" />
</RefreshVersion>
<Message Text="Updating package version number to $(NewVersionString)..." Importance="high" />
<XmlPoke XmlInputPath="$(MSBuildProjectDirectory)\mustache.website.sdk.dotNET.csproj" Query="/Project/PropertyGroup/PackageVersion" Value="$(NewVersionString)" />
</Target>
...
<PropertyGroup>
..
<PackageVersion>1.1.4</PackageVersion>
..
挑选Visual Studio Pack项目选项(仅在构建之前更改BeforeTargets="Build"
为执行任务)时,将触发刷新代码以计算新版本号,并且XmlPoke
任务将相应地更新.csproj属性(是的,它将修改文件)。
在使用 NuGet 库时,我还将包发送到 NuGet 存储库,只需将下一个构建任务添加到上一个示例。
<Message Text="Uploading package to NuGet..." Importance="high" />
<Exec WorkingDirectory="$(MSBuildProjectDirectory)\bin\release" Command="c:\nuget\nuget push *.nupkg -Source https://www.nuget.org/api/v2/package" IgnoreExitCode="true" />
c:\nuget\nuget
是我拥有 NuGet 客户端的地方(请记住通过调用nuget SetApiKey <my-api-key>
或在 NuGet 推送调用中包含该密钥来保存您的 NuGet API 密钥)。
以防万一它对某人有所帮助^_^。