main
props 90 lines 3.21 KB
Raw
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
3
4 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
5 <PropertyGroup>
6 <WixSigningPropsImported>true</WixSigningPropsImported>
7 </PropertyGroup>
8
9 <!--
10 ==================================================================================================
11 BeforeSigning
12
13 Redefine this target in your project in order to run tasks just before all signing tasks.
14 ==================================================================================================
15 -->
16 <Target Name="BeforeSigning" />
17
18 <!--
19 ==================================================================================================
20 SignMsm
21
22 Redefine this target in your project in order to sign merge modules.
23
24 [IN]
25 @(SignMsm) - merge module files to sign.
26 ==================================================================================================
27 -->
28 <Target Name="SignMsm" />
29
30 <!--
31 ==================================================================================================
32 SignCabs
33
34 Redefine this target in your project in order to sign the cabs of your database.
35
36 [IN]
37 @(SignCabs) - cabinet files to sign.
38 ==================================================================================================
39 -->
40 <Target Name="SignCabs" />
41
42 <!--
43 ==================================================================================================
44 SignMsi
45
46 Redefine this target in your project in order to sign your database, after it has been inscribed
47 with the signatures of your signed cabs.
48
49 [IN]
50 @(SignMsi) - database files to sign.
51 ==================================================================================================
52 -->
53 <Target Name="SignMsi" />
54
55 <!--
56 ==================================================================================================
57 SignBundleEngine
58
59 Redefine this target in your project in order to sign your bundle, after it has been inscribed
60 with the signatures of your signed containers.
61
62 [IN]
63 @(SignBundleEngine) - bundle engine file to sign.
64 ==================================================================================================
65 -->
66 <Target Name="SignBundleEngine" />
67
68 <!--
69 ==================================================================================================
70 SignBundle
71
72 Redefine this target in your project in order to sign your bundle, after the attached container
73 is reattached.
74
75 [IN]
76 @(SignBundle) - bundle file to sign.
77 ==================================================================================================
78 -->
79 <Target Name="SignBundle" />
80
81 <!--
82 ==================================================================================================
83 AfterSigning
84
85 Redefine this target in your project in order to run tasks just after all signing tasks.
86 ==================================================================================================
87 -->
88 <Target Name="AfterSigning" />
89
90 </Project>