From 445cd7833a858deec291d3682763ccbfa3856337 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Mon, 10 Jan 2022 16:32:31 -0800 Subject: Rename wix.signing.targets to WixToolset.Signing.targets --- src/wix/WixToolset.Sdk/WixToolset.Sdk.csproj | 2 +- .../tools/WixToolset.Signing.targets | 408 +++++++++++++++++++++ src/wix/WixToolset.Sdk/tools/wix.signing.targets | 408 --------------------- src/wix/WixToolset.Sdk/tools/wix.targets | 2 +- 4 files changed, 410 insertions(+), 410 deletions(-) create mode 100644 src/wix/WixToolset.Sdk/tools/WixToolset.Signing.targets delete mode 100644 src/wix/WixToolset.Sdk/tools/wix.signing.targets diff --git a/src/wix/WixToolset.Sdk/WixToolset.Sdk.csproj b/src/wix/WixToolset.Sdk/WixToolset.Sdk.csproj index 33fdc7b2..a20a3aa9 100644 --- a/src/wix/WixToolset.Sdk/WixToolset.Sdk.csproj +++ b/src/wix/WixToolset.Sdk/WixToolset.Sdk.csproj @@ -16,7 +16,7 @@ - + diff --git a/src/wix/WixToolset.Sdk/tools/WixToolset.Signing.targets b/src/wix/WixToolset.Sdk/tools/WixToolset.Signing.targets new file mode 100644 index 00000000..abf25177 --- /dev/null +++ b/src/wix/WixToolset.Sdk/tools/WixToolset.Signing.targets @@ -0,0 +1,408 @@ + + + + + + $(MSBuildProjectFile).Signed.txt + $(IntermediateOutputPath)$(SignedFileName) + + + + + + + + + + + + + + + + + + + + + + + + + $(NoLogo) + $(SuppressAllWarnings) + $(SuppressSpecificWarnings) + $(TreatWarningsAsErrors) + $(TreatSpecificWarningsAsErrors) + $(VerboseOutput) + + + + $(SignOutput) + + + + + <_InternalSignDependsOn Condition=" '$(OutputType)' == 'Module' "> + GetMsmsToSign; + InternalSignMsm; + + <_InternalSignDependsOn Condition=" '$(OutputType)' == 'Package' "> + GetCabsToSign; + GetMsiToSign; + InternalSignCabs; + InscribeMsi; + InternalSignMsi; + + <_InternalSignDependsOn Condition=" '$(OutputType)' == 'Bundle' "> + GetContainersToSign; + InternalSignContainers; + InscribeBundleEngine; + InternalSignBundleEngine; + InscribeBundle; + InternalSignBundle; + + + + CoreCompile; + CalculateSignTargetFiles; + BeforeSigning; + $(_InternalSignDependsOn); + AfterSigning + + + + $(CompileDependsOn); + Signing + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/wix/WixToolset.Sdk/tools/wix.signing.targets b/src/wix/WixToolset.Sdk/tools/wix.signing.targets deleted file mode 100644 index abf25177..00000000 --- a/src/wix/WixToolset.Sdk/tools/wix.signing.targets +++ /dev/null @@ -1,408 +0,0 @@ - - - - - - $(MSBuildProjectFile).Signed.txt - $(IntermediateOutputPath)$(SignedFileName) - - - - - - - - - - - - - - - - - - - - - - - - - $(NoLogo) - $(SuppressAllWarnings) - $(SuppressSpecificWarnings) - $(TreatWarningsAsErrors) - $(TreatSpecificWarningsAsErrors) - $(VerboseOutput) - - - - $(SignOutput) - - - - - <_InternalSignDependsOn Condition=" '$(OutputType)' == 'Module' "> - GetMsmsToSign; - InternalSignMsm; - - <_InternalSignDependsOn Condition=" '$(OutputType)' == 'Package' "> - GetCabsToSign; - GetMsiToSign; - InternalSignCabs; - InscribeMsi; - InternalSignMsi; - - <_InternalSignDependsOn Condition=" '$(OutputType)' == 'Bundle' "> - GetContainersToSign; - InternalSignContainers; - InscribeBundleEngine; - InternalSignBundleEngine; - InscribeBundle; - InternalSignBundle; - - - - CoreCompile; - CalculateSignTargetFiles; - BeforeSigning; - $(_InternalSignDependsOn); - AfterSigning - - - - $(CompileDependsOn); - Signing - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/wix/WixToolset.Sdk/tools/wix.targets b/src/wix/WixToolset.Sdk/tools/wix.targets index 54115619..bd27d1a5 100644 --- a/src/wix/WixToolset.Sdk/tools/wix.targets +++ b/src/wix/WixToolset.Sdk/tools/wix.targets @@ -30,7 +30,7 @@ $(MSBuildThisFileDirectory)wix.harvest.targets - $(MSBuildThisFileDirectory)wix.signing.targets + $(MSBuildThisFileDirectory)WixToolset.Signing.targets -- cgit v1.2.3-55-g6feb