-
-
Notifications
You must be signed in to change notification settings - Fork 216
Expand file tree
/
Copy pathSecureUxTheme.wixproj
More file actions
22 lines (22 loc) · 888 Bytes
/
SecureUxTheme.wixproj
File metadata and controls
22 lines (22 loc) · 888 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="WixToolset.Sdk/6.0.0">
<PropertyGroup>
<SignOutput>true</SignOutput>
<SuppressIces>ICE09</SuppressIces>
</PropertyGroup>
<PropertyGroup Condition=" '$(RuntimeIdentifier)' == 'win-x86' ">
<InstallerPlatform>x86</InstallerPlatform>
</PropertyGroup>
<PropertyGroup Condition=" '$(RuntimeIdentifier)' == 'win-x64' ">
<InstallerPlatform>x64</InstallerPlatform>
</PropertyGroup>
<PropertyGroup Condition=" '$(RuntimeIdentifier)' == 'win-arm64' ">
<InstallerPlatform>arm64</InstallerPlatform>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="WixToolset.Util.wixext" Version="6.0.0" />
</ItemGroup>
<Target Name="SignMsi">
<Message Importance="high" Text="SignMsi: @(SignMsi)" />
<Exec Command='$(AUTHENTICODE_SIGN) "%(SignMsi.FullPath)" ' />
</Target>
</Project>