我在构建期间自动生成了AssemblyInfo.cs文件。这是.csproj文件的一部分:
<PropertyGroup>
<Major>2</Major>
<Minor>3</Minor>
<Build>0</Build>
<Revision>0</Revision>
</PropertyGroup>
<Target Name="BeforeBuild">
<SvnVersion LocalPath="$(MSBuildProjectDirectory)" ToolPath="C:\Program Files\VisualSVN Server\bin">
<Output TaskParameter="Revision" PropertyName="Revision" />
</SvnVersion>
<AssemblyInfo CodeLanguage="CS"
OutputFile="$(MSBuildProjectDirectory)\Properties\VersionInfo.cs"
AssemblyVersion="$(Major).$(Minor).$(Build).$(Revision)"
AssemblyFileVersion="$(Major).$(Minor).$(Build).$(Revision)"/>
</Target>
但我不知道如何在.csproj文件外指定Major
和Minor
属性,所以每次我想要更改版本时都不必卸载项目。我需要从项目内部的特殊文本文件加载它们或以某种方式在项目属性对话框中设置它们。有什么建议吗?
答案 0 :(得分:14)
使用ReadLinesFromFile
在单独的文件中创建版本:
<ReadLinesFromFile File="Properties\Version.txt">
<Output TaskParameter="Lines" ItemName="Ver" />
</ReadLinesFromFile>
<SvnVersion LocalPath="$(MSBuildProjectDirectory)" ToolPath="C:\Program Files (x86)\VisualSVN Server\bin">
<Output TaskParameter="Revision" PropertyName="Revision" />
</SvnVersion>
<Message Text="Version: @(Ver).$(Revision)" />
<AssemblyInfo
CodeLanguage="CS"
OutputFile="$(MSBuildProjectDirectory)\Properties\VersionInfo.cs"
AssemblyVersion="@(Ver).$(Revision)"
AssemblyFileVersion="@(Ver).$(Revision)"/>
答案 1 :(得分:1)
可以使用PropertyFunctions的功能直接调用某些.NET函数来执行此操作。本质上,您可以在设置属性值时调用File.ReadAllText()。
<PropertyGroup>
<Version>$([System.IO.File]::ReadAllText("Version.txt"))</Version>
</PropertyGroup>
<SvnVersion LocalPath="$(MSBuildProjectDirectory)" ToolPath="C:\Program Files (x86)\VisualSVN Server\bin">
<Output TaskParameter="Revision" PropertyName="Revision" />
</SvnVersion>
<Message Text="Version: $(Version).$(Revision)" />
<AssemblyInfo
CodeLanguage="CS"
OutputFile="$(MSBuildProjectDirectory)\Properties\VersionInfo.cs"
AssemblyVersion="$(Version).$(Revision)"
AssemblyFileVersion="$(Version).$(Revision)"/>
Version.txt文件仅包含前三个版本号,即“ 1.2.3”或其他任何版本。
我不确定何时将其添加到MSBuild中,但是可能是在询问并回答了该问题之后。
答案 2 :(得分:0)
使用property pages,这样就可以在项目属性表对话框中设置这些属性。
您需要创建属性文件并编辑项目文件(仅一次),以将导入指令添加到属性文件中。 Here is an example
答案 3 :(得分:0)
您可以使用外部工具
<Exec Command="newversion incMinor AssemblyInfo.cs > newversion.log" />
答案 4 :(得分:0)
如果你担心VS锁定了csproj文件,我对这个问题的回答 - How to turn off caching of build definitions in Visual studio可能对你有帮助。
您可以将BeforeBuild任务的内容(包括版本属性组)移动到单独的proj文件中,并使用MSBuild任务调用它(使用上面链接答案中的示例生成的随机文件名)。这将允许您手动编辑版本号属性,而无需卸载/加载csproj文件。