Microsoft Technologies based on the .NET software framework. Miscellaneous topics that do not fit into specific categories.
I managed to solve the problem by copying the signed output of my project inside the postbuild event to obj\release. This is leads to signed files inside the .msi file.
post build event:
if $(ConfigurationName) == Release (
sign code artifact-signing "$(TargetPath)" -ase "%AZURE_SIGNING_ENDPOINT%" -asa "%AZURE_SIGNING_ACCOUNT%" -ascp "%AZURE_SIGNING_CERT_PROFILE%" -t http://timestamp.acs.microsoft.com/ -fd sha256
copy /Y "$(TargetPath)" "$(ProjectDir)$(IntermediateOutputPath)$(TargetFileName)"
)
