vcsjones / AzureSignTool

SignTool Library and Azure Key Vault Support
MIT License
267 stars 85 forks source link

Cannot compile from source for 4.0.1 #209

Open dbaduck opened 10 months ago

dbaduck commented 10 months ago

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.

QES-Smit commented 8 months ago

Still an issue or did you solve it?

backformation commented 6 months ago

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