I've taken on project based on Visual Studio 2012. There the path to signtool.exe is found the following way:
<SignToolPath Condition=" Exists('$(WindowsSDK80Path)bin\x86\signtool.exe') and '$(SignToolPath)'=='' and '$(PROCESSOR_ARCHITECTURE)'=='x86' ">$(WindowsSDK80Path)bin\x86\signtool.exe</SignToolPath>
<SignToolPath Condition=" Exists('$(WindowsSDK80Path)bin\x64\signtool.exe') and '$(SignToolPath)'=='' and '$(PROCESSOR_ARCHITECTURE)'=='AMD64' ">$(WindowsSDK80Path)bin\x64\signtool.exe</SignToolPath>
Now i want to port the project to Visual Studio 2017. With this installed this way to get the path is no longer working because of missing Windows SDK 8.
I've installed the Click Once component and the Windows 10 SDK. Therefore signtool.exe is available.
Can someone tell me how to find the path with Visual Studio 2017?