AzureSignTool icon indicating copy to clipboard operation
AzureSignTool copied to clipboard

Cannot compile from source for 4.0.1

Open dbaduck opened this issue 1 year ago • 2 comments

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.

dbaduck avatar Oct 25 '23 03:10 dbaduck

Still an issue or did you solve it?

QES-Smit avatar Dec 20 '23 15:12 QES-Smit

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

backformation avatar Feb 28 '24 12:02 backformation