Open dbaduck opened 1 year ago
Still an issue or did you solve it?
If it helps, this is the makefile that I use:
#
# AzureSignTool Makefile
#
#
# Top level build rules
#
.SILENT:
.SUFFIXES:
all: Only\AzureSignTool.exe
Only\AzureSignTool.exe:
cd Only
echo ** Fetching from GitHub
git clone https://github.com/vcsjones/AzureSignTool.git
cd AzureSignTool
git checkout tags/v4.0.1
echo ** NuGet package restoration
msbuild.exe /t:restore /t:build
echo ** Building AzureSignTool solution
DevEnv.com AzureSignTool.sln /upgrade
DevEnv.com AzureSignTool.sln /build "Release|Any CPU"
cd ..
mklink AzureSignTool.exe AzureSignTool\src\AzureSignTool\bin\Release\netcoreapp3.1\AzureSignTool.exe
Is there any guidance on how to compile this tool? I cannot get the dotnet tool to install from the nuget.org repo nor can I use the manually downloaded package.
I really need to be able to use this tool and I cannot get a standalone exe yet and I cannot compile.
Any help would be greatly appreciated.