Skip to content

Commit 9373cbd

Browse files
khouzamtimotiusmargo
authored andcommitted
Merged PR 1991544: Add version property and signing configuration for UIRecorder builds
Add version property and signing configuration for UIRecorder builds
2 parents 1d4ac13 + d633be4 commit 9373cbd

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

Tools/UIRecorder/SignConfig.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<!--
3+
signType indicates which certificates are used to sign the output
4+
signType = "StrongName = 72 , Authenticode = 10006 , Both = 72 & 10006"
5+
-->
6+
<SignConfigXML>
7+
<!-- Release Win32 sign job -->
8+
<job platform="x86" configuration="Release" dest="__RELBINPATH__\Signed" jobname="WinAppDriver UIRecorder" approvers="gillesk;timargo">
9+
<!-- Win32 -->
10+
<file src="__RELBINPATH__\UIXPathLib.dll" signType="Authenticode" dest="__RELBINPATH__\Signed\UIXPathLib.dll" />
11+
<file src="__RELBINPATH__\WinAppDriverUiRecorder.exe" signType="Authenticode" dest="__RELBINPATH__\Signed\WinAppDriverUiRecorder.exe" />
12+
</job>
13+
<job platform="x64" configuration="Release" dest="__RELBINPATH__\Signed" jobname="WinAppDriver UIRecorder" approvers="gillesk;timargo">
14+
<!-- X64 -->
15+
<file src="__RELBINPATH__\UIXPathLib.dll" signType="Authenticode" dest="__RELBINPATH__\Signed\UIXPathLib.dll" />
16+
<file src="__RELBINPATH__\WinAppDriverUiRecorder.exe" signType="Authenticode" dest="__RELBINPATH__\Signed\WinAppDriverUiRecorder.exe" />
17+
</job>
18+
</SignConfigXML>

Tools/UIRecorder/custom.props

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<!-- other properties you might want to set for this branch -->
4+
<PropertyGroup Label="Version">
5+
<VersionMajor>1</VersionMajor>
6+
<VersionMinor>0</VersionMinor>
7+
<VersionInfoProductName>WinAppDriver</VersionInfoProductName>
8+
</PropertyGroup>
9+
</Project>

0 commit comments

Comments
 (0)