如何在构建后事件中获取版本号 [英] How to get version number in post-build event

查看:108
本文介绍了如何在构建后事件中获取版本号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用构建后事件自动创建一个nuget程序包,然后将其复制到我们网络上的共享文件夹中,如下所示(版本号1.0.0.0。在MyLib.nuspec文件中指定):

I want to use post-build event to automatically create a nuget package and then copy it to a shared folder on our network, something like this (the version number 1.0.0.0. is specified inside the MyLib.nuspec file):

nuget.exe pack "$(SolutionDir)MyLib.nuspec"
xcopy /Y "$(TargetDir)MyLib.1.0.0.0.nupkg" \\folder\subfolder\NuGetPackages

但是现在我想更新此脚本,以便它也包括程序集版本,但是我无法在构建后事件中获取程序集版本。我需要这样的东西:

This works, but now I would like to update this script, so that it would include the assembly version also, but I cannot get assembly version inside the post-build event. I would need something like this:

nuget.exe pack -Version $(AssemblyVersion) "$(SolutionDir)MyLib.nuspec"
xcopy /Y "$(TargetDir)MyLib." + $(AssemblyVersion) + ".nupkg" \\folder\subfolder\NuGetPackages

但是$(AssemblyVersion)变量不存在...有什么想法吗?

But the $(AssemblyVersion) variable does not exists... Any ideas?

推荐答案

此构建脚本对我有用。它在每个构建中打包并发布我的开发版本。非常简单。

This post build script works for me. It packages and publishes my dev versions on each build. Pretty simple.

del $(ProjectDir)bin\Debug\*.nupkg
"$(ProjectDir)NuGet.exe" pack "$(ProjectDir)MyProject.csproj"
forfiles /P $(ProjectDir)bin\Debug\ /m *.nupkg /c "cmd /c "$(ProjectDir)NuGet.exe" push @FILE -Source \\SHARE\NuGet"

这篇关于如何在构建后事件中获取版本号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆