I want to add post build event to sign some project outputs by my signer app - this is the simple console application with the one action inside.
I had added this in the Post-build event command line window
$(OutDir)\Tools\SignTool.exe $(TargetPath)
On this command Visual Studio (2015) create a temporary exe for some reason in temporary folder and try to run it. My company's security settings block it and I think they right but build has failed.
Can somebody help to explain how to prevent VS to do this odd action and just run the *.exe or how to change the temp folder for VS without changing the global environment temp?