-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcreate-signed-builds.cmd
18 lines (14 loc) · 1.08 KB
/
create-signed-builds.cmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
:: SPDX-FileCopyrightText: © 2024 Team CharLS
:: SPDX-License-Identifier: BSD-3-Clause
:: Build signed x86
msbuild -t:clean -p:Configuration=Release -p:Platform=Win32
msbuild -t:restore -p:Configuration=Release -p:Platform=Win32
msbuild -t:build -p:ContinuousIntegrationBuild=true -p:Configuration=Release -p:Platform=Win32 -p:CHARLS_DETERMINISTIC_BUILD=true -p:SignOutput=true -p:CertificateThumbprint=%1 -p:TimestampUrl=%2
:: Build signed x64
msbuild -t:clean -p:Configuration=Release -p:Platform=x64
msbuild -t:restore -p:Configuration=Release -p:Platform=x64
msbuild -t:build -p:ContinuousIntegrationBuild=true -p:Configuration=Release -p:Platform=x64 -p:CHARLS_DETERMINISTIC_BUILD=true -p:SignOutput=true -p:CertificateThumbprint=%1 -p:TimestampUrl=%2
:: Build signed ARM64
msbuild -t:clean -p:Configuration=Release -p:Platform=ARM64
msbuild -t:restore -p:Configuration=Release -p:Platform=ARM64
msbuild -t:build -p:ContinuousIntegrationBuild=true -p:Configuration=Release -p:Platform=ARM64 -p:CHARLS_DETERMINISTIC_BUILD=true -p:SignOutput=true -p:CertificateThumbprint=%1 -p:TimestampUrl=%2