-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVersion.targets
121 lines (106 loc) · 5.22 KB
/
Version.targets
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (c) 2014 ABB Group
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html
Contributors:
* Vinay Augustine (ABB Group) - initial API, implementation, & documentation
-->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<!-- Configuration
There are three steps to using these targets in an MSBuild file:
1. Create two ItemGroups:
* AssemblyInfoFiles (each item will be an assembly file to generate)
* SourceManifests (each item will be a source manifest file to update)
2. Set the $(MSBuildCommunityTasksPath) property (SetVersion will fail otherwise)
3. Override any of the following properties if you need to change the default:
* ReleasePrefix: prefix that should be removed from a tag to produce the
version number. For instance, if tags are in the format "v1.0" the release prefix will be "v" (this is the default)
* Company: The company attribute ("ABB" is the default)
* NeutralResourcesLanguage: The neutral resources language (en-US is the default)
4. Include the two targets as "DependsOnTargets" of your build target
-->
<PropertyGroup>
<ReleasePrefix Condition="'$(ReleasePrefix)'==''">v</ReleasePrefix>
<Company Condition="'$(Company)'==''">ABB</Company>
<NeutralResourcesLanguage Condition="'$(NeutralResourcesLanguage)'==''">en-US</NeutralResourcesLanguage>
</PropertyGroup>
<PropertyGroup>
<ReleaseTag>99.99</ReleaseTag>
<Revision>0</Revision>
<BUILD_NUMBER Condition="'$(BUILD_NUMBER)'==''">0</BUILD_NUMBER>
<Version>$(ReleaseTag).0.0</Version>
<RootDirectory Condition="'$(RootDirectory)'==''">$(MSBuildStartupDirectory)</RootDirectory>
<VersionOutputFile Condition="'$(VersionOutputFile)'==''">Version.txt</VersionOutputFile>
<XmlNamespaces>
<Namespace Prefix="nuget"
Uri="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd" />
<Namespace Prefix="v"
Uri="http://schemas.microsoft.com/developer/vsx-schema/2010" />
<Namespace Prefix="csproj"
Uri="http://schemas.microsoft.com/developer/msbuild/2003" />
</XmlNamespaces>
</PropertyGroup>
<Target Name="CreateAssemblyInfo" DependsOnTargets="SetVersion">
<WriteLinesToFile File="%(AssemblyInfoFiles.FullPath)" Overwrite="true"
Lines="using System.Reflection%3B
using System.Resources%3B
[assembly: AssemblyCompany("$(Company)")]
[assembly: NeutralResourcesLanguage("$(NeutralResourcesLanguage)")]
[assembly: AssemblyVersion("$(Version)")]
#if DEBUG
[assembly: AssemblyConfiguration("Debug")]
[assembly: AssemblyInformationalVersion("$(Version)-Debug-$(CommitHash)")]
#else
[assembly: AssemblyConfiguration("Release")]
[assembly: AssemblyInformationalVersion("$(Version)-Release-$(CommitHash)")]
#endif" />
</Target>
<Target Name="CreateCppAssemblyInfo" DependsOnTargets="SetVersion">
<WriteLinesToFile File="%(CppAssemblyInfoFiles.FullPath)" Overwrite="true"
Lines="
using namespace System::Reflection%3B
using namespace System::Resources%3B
[assembly:AssemblyCompanyAttribute(L"$(Company)")]%3B
[assembly:NeutralResourcesLanguageAttribute(L"$(NeutralResourcesLanguage)")]%3B
[assembly:AssemblyVersionAttribute(L"$(Version)")]%3B
#if DEBUG
[assembly:AssemblyConfigurationAttribute(L"Debug")]%3B
[assembly:AssemblyInformationalVersionAttribute(L"$(Version)-Debug-$(CommitHash)")]%3B
#else
[assembly:AssemblyConfigurationAttribute(L"Release")]%3B
[assembly:AssemblyInformationalVersionAttribute(L"$(Version)-Release-$(CommitHash)")]%3B
#endif
"/>
</Target>
<Target Name="SetNuspecVersion" DependsOnTargets="SetVersion">
<XmlPoke Namespaces="$(XmlNamespaces)" XmlInputPath="%(NuspecFiles.FullPath)"
Query="/nuget:package/nuget:metadata/nuget:version" Value="$(Version)" />
</Target>
<Target Name="SetVsixVersion" DependsOnTargets="SetVersion">
<XmlPoke Namespaces="$(XmlNamespaces)" XmlInputPath="%(SourceManifests.FullPath)"
Query="/v:Vsix/v:Identifier/v:Version" Value="$(Version)"/>
</Target>
<Target Name="PrintVersion" DependsOnTargets="SetVersion">
<Message Text="$(Version)" />
</Target>
<Target Name="PrintVersionToFile" DependsOnTargets="SetVersion">
<WriteLinesToFile File="$(VersionOutputFile)" Overwrite="True"
Lines="VERSION=$(Version)" />
</Target>
<Import Project="$(MSBuildCommunityTasksPath)\MSBuild.Community.Tasks.Targets"
Condition="Exists('$(MSBuildCommunityTasksPath)\MSBuild.Community.Tasks.Targets')" />
<Target Name="SetVersion">
<GitDescribe LocalPath="$(RootDirectory)">
<Output TaskParameter="Tag" PropertyName="ReleaseTag" />
<Output TaskParameter="CommitCount" PropertyName="Revision" />
<Output TaskParameter="CommitHash" PropertyName="CommitHash" />
</GitDescribe>
<PropertyGroup>
<ReleaseTag>$(ReleaseTag.Substring($(ReleasePrefix.Length)))</ReleaseTag>
<Version>$(ReleaseTag).$(Revision).$(BUILD_NUMBER)</Version>
</PropertyGroup>
</Target>
</Project>