forked from saltstack/salt-windows-msi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
msbuild.proj
229 lines (196 loc) · 10.7 KB
/
msbuild.proj
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="build">
<PropertyGroup>
<Configuration Condition="'$(Configuration)'==''">Release</Configuration>
<TargetPlatform Condition="'$(TargetPlatform)'==''">win32</TargetPlatform>
<PackagesDir Condition="'$(PackagesDir)'==''">$(MSBuildProjectDirectory)\packages</PackagesDir>
<DistDir Condition="'$(DistDir)'==''">$(MSBuildProjectDirectory)\..\salt\dist</DistDir>
<BuildEnv Condition="'$(BuildEnv)'==''">$(MSBuildProjectDirectory)\common\buildenv</BuildEnv>
<ExtractDir Condition="'$(ExtractDir)'==''">$(MSBuildProjectDirectory)\dist.$(TargetPlatform)</ExtractDir>
<MakeNSIS Condition="'$(MakeNSIS)'==''">$(registry:HKEY_LOCAL_MACHINE\Software\NSIS)\makensis.exe</MakeNSIS>
<NuGet Condition="'$(NuGet)'==''">$(MSBuildProjectDirectory)\.nuget\NuGet.exe</NuGet>
<SolutionProperties>Configuration=$(Configuration);TargetPlatform=$(TargetPlatform);PackagesDir=$(PackagesDir);DistDir=$(DistDir);BuildEnv=$(BuildEnv);ExtractDir=$(ExtractDir)</SolutionProperties>
<StagingDir>$(MSBuildProjectDirectory)\output</StagingDir>
<TimestampUrl>http://timestamp.verisign.com/scripts/timstamp.dll</TimestampUrl>
</PropertyGroup>
<Import Project="$(MSBuildProjectDirectory)\common\targets\Minion.Common.targets" />
<ItemGroup>
<Wix Include="$(MSBuildProjectDirectory)\wix.sln" />
<NSI Include="$(MSBuildProjectDirectory)\nsis\Salt-Minion-Setup.nsi" />
</ItemGroup>
<!--
================================================================================
help
This is also useful to see what the some of the discovered/generated
properties (e.g. DisplayVersion) will be.
================================================================================
-->
<Target Name="help" DependsOnTargets="setVersionProperties">
<Message Text="
Usage: msbuild.exe $(MSBuildProjectDirectory)\msbuild.proj
[/t:target[,target]] [/p:Property1=Value1 .. /p:PropertyN=ValueN]
Available Targets:
- wix: Build just the WiX install packages.
- nsis: Build just the NSIS install packages.
- build: Identical to /t:wix,nsis. The default.
- rebuild: Identical to /t:clean,build.
- sign: Digitally sign install packages.
- stage: Copy build artifacts to a defined location.
- clean: Removes all build artifacts.
Available Properties:
- BuildEnv: Where to find the static/common installer content.
- BUILD_NUMBER: The build number for this build (e.g. set by Jenkins).
- Configuration: Debug or Release.
- DistDir: Where to find the main salt distribution zip files.
- DistFile: Path to the distribution zip file to consume.
- DisplayVersion: The user-facing version being built.
- ExtractDir: Where to extract the distribution zip file.
- ForceVCRedistDL: Whether to force re-download of the vcredist file.
- InternalVersion: The WiX/MSI ProductVersion.
- MakeNSIS: Where the makensis.exe binary is location.
- NuGet: Where to find NuGet.exe, required for this build.
- StagingDir: Where to stage built binaries.
- TargetPlatform: Which platform to build. Expected values are win32 or amd64.
- Thumbprint: Certificate thumbprint from Certificate Store to use for digital signing.
- TimestampUrl: URL of a time stamp server.
Current Defaults:
- BuildEnv: '$(BuildEnv)'
- BUILD_NUMBER: '$(BUILD_NUMBER)'
- Configuration: '$(Configuration)'
- DistDir: '$(DistDir)'
- DistFile: '@(DistFile)'
- DisplayVersion: '$(DisplayVersion)'
- ExtractDir: '$(ExtractDir)'
- ForceVCRedistDL: '$(ForceVCRedistDL)'
- InternalVersion: '$(InternalVersion)'
- MakeNSIS: '$(MakeNSIS)'
- NuGet: '$(NuGet)'
- StagingDir: '$(StagingDir)'
- TargetPlatform: '$(TargetPlatform)'
- Thumbprint: '$(Thumbprint)'
- TimestampUrl: '$(TimestampUrl)'
" />
</Target>
<!--
================================================================================
restore
Run NuGet against the WiX solution to restore dependencies. Requires NuGet.
If using a NuGet from a non-default location, copy to the default location
so the Visual Studio solution doesn't fail.
================================================================================
-->
<Target Name="restore">
<Error Condition="!Exists('$(NuGet)')" Text="Cannot find nuget.exe at $(NuGet). Please download from http://nuget.org or pass /p:NuGet=<path to nuget.exe> to msbuild." />
<Copy Condition="'$(NuGet)'!='$(MSBuildProjectDirectory)\.nuget\NuGet.exe'" SourceFiles="$(NuGet)" DestinationFolder=".nuget" />
<Exec Command=""$(NuGet)" restore" />
</Target>
<!--
================================================================================
build
================================================================================
-->
<Target Name="build" DependsOnTargets="wix;nsis" />
<!--
================================================================================
wix
Runs MSBuild against the WiX solution.
================================================================================
-->
<Target Name="wix" DependsOnTargets="restore">
<MSBuild Projects="%(Wix.Identity)" Properties="$(SolutionProperties)" />
</Target>
<!--
================================================================================
nsis
Runs makensis.exe against the .nsi in the nsis/ directory.
[IN]
@(DistContent) - the extracted distribution files. This is set in
Minion.Common.Targets in the common/targets/ dir.
@(BuildEnvContent) - the contents of the static buildenv/ dir.
================================================================================
-->
<Target Name="nsis" DependsOnTargets="restore;DistContent" Inputs="@(DistContent);@(BuildEnvContent)"
Outputs="$(MSBuildProjectDirectory)\nsis\Salt-Minion-$(DisplayVersion)-$(TargetPlatform)-Setup.exe">
<PropertyGroup>
<BuildEnv>/DBUILDENV="$(MSBuildProjectDirectory)\common\buildenv"</BuildEnv>
<DistFiles>/DDISTFILES="$(ExtractDir)"</DistFiles>
<ProductVersion>/DPRODUCT_VERSION=$(DisplayVersion)</ProductVersion>
<DefinedPlatform>/DTARGET_PLATFORM=$(TargetPlatform)</DefinedPlatform>
</PropertyGroup>
<Warning Condition="'$(MakeNSIS)'==''" Text="Warning: NSIS not found. Not building NSIS setup.exe" />
<Error Condition="'$(MakeNSIS)'!='' AND !Exists('%(NSI.Identity)')" Text="Cannot find NSIS setup file." />
<Exec Condition="'$(MakeNSIS)'!=''" Command=""$(MakeNSIS)" $(DefinedPlatform) $(BuildEnv) $(DistFiles) $(ProductVersion) "%(NSI.Identity)"" />
</Target>
<!--
================================================================================
stage
Copy the built setup packages to a common staging location. Preserves the
output between runs of msbuild /t:rebuild for different TargetPlatforms.
================================================================================
-->
<Target Name="stage" AfterTargets="build">
<ItemGroup>
<Artifacts Include="$(MSBuildProjectDirectory)\nsis\Salt-Minion-$(DisplayVersion)-$(TargetPlatform)-Setup.exe">
<OutputType>nsis</OutputType>
</Artifacts>
<Artifacts Include="$(MSBuildProjectDirectory)\wix\MinionMSI\bin\$(Configuration)\Salt-Minion-$(DisplayVersion)-$(TargetPlatform)-Setup.msi">
<OutputType>wix</OutputType>
</Artifacts>
<Artifacts Include="$(MSBuildProjectDirectory)\wix\MinionEXE\bin\$(Configuration)\Salt-Minion-$(DisplayVersion)-$(TargetPlatform)-Setup.exe">
<OutputType>wix</OutputType>
</Artifacts>
</ItemGroup>
<Message Text="Copying %(Artifacts.Identity) to $(StagingDir)\%(OutputType)" />
<Copy Condition="'$(StagingDir)'!=''" SourceFiles="@(Artifacts)" DestinationFolder="$(StagingDir)\%(Artifacts.OutputType)" />
</Target>
<!--
================================================================================
sign
This will attempt to digitally sign setup packages in the output staging
location. Signing requires a valid Code Signing certificate and private
key; both must be available in the Personal certificate store for the user
running the build. The certificate thumbprint must be either set as an
environment variable 'Thumbprint' or passed to msbuild as a Property.
================================================================================
-->
<Target Name="sign" AfterTargets="stage">
<ItemGroup>
<SignTarget Include="@(Artifacts->'$(StagingDir)\%(OutputType)\%(Filename)%(Extension)')" />
</ItemGroup>
<Message Condition="'$(Thumbprint)'==''" Text="No certificate thumbprint provided. Not digitally signing output." />
<Message Importance="High" Condition="'$(Thumbprint)'!=''" Text="Digitally signing %(SignTarget.Identity) with certificate $(Thumbprint)" />
<SignFile Condition="'$(Thumbprint)'!='' AND '$(TimestampUrl)'!=''"
CertificateThumbprint="$(Thumbprint)" SigningTarget="@(SignTarget)" TimestampUrl="$(TimestampUrl)" />
<SignFile Condition="'$(Thumbprint)'!='' AND '$(TimestampUrl)'==''"
CertificateThumbprint="$(Thumbprint)" SigningTarget="@(SignTarget)" />
</Target>
<!--
================================================================================
clean
================================================================================
-->
<Target Name="clean" DependsOnTargets="cleanwix;cleannsis" />
<!--
================================================================================
cleanwix
Runs the WiX solution's clean target.
================================================================================
-->
<Target Name="cleanwix">
<MSBuild Projects="%(Wix.Identity)" Properties="$(SolutionProperties)" Targets="clean" />
</Target>
<!--
================================================================================
cleannsis
Delete the NSIS build package.
================================================================================
-->
<Target Name="cleannsis" DependsOnTargets="setVersionProperties">
<Delete Files="$(MSBuildProjectDirectory)\nsis\Salt-Minion-$(DisplayVersion)-$(TargetPlatform)-Setup.exe" />
</Target>
<!--
================================================================================
rebuild
================================================================================
-->
<Target Name="rebuild" DependsOnTargets="clean;build" />
</Project>