Skip to content

Commit

Permalink
Merge pull request #232 from petabridge/dev
Browse files Browse the repository at this point in the history
fix signclient installation (#231)
  • Loading branch information
Aaronontheweb authored Feb 17, 2022
2 parents 96c5beb + 3d304a9 commit 8b65bfa
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
15 changes: 8 additions & 7 deletions build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -98,18 +98,19 @@ if (!(Test-Path $DocfxExePath)) {
}
}


###########################################################################
# Incrementalist
# SignTool
###########################################################################

# Make sure the Incrementalist has been installed
if (Get-Command incrementalist -ErrorAction SilentlyContinue) {
Write-Host "Found Incrementalist. Skipping install."
# Make sure the SignClient has been installed
if (Get-Command signclient -ErrorAction SilentlyContinue) {
Write-Host "Found SignClient. Skipping install."
}
else{
$IncrementalistFolder = Join-Path $ToolPath "incrementalist"
Write-Host "Incrementalist not found. Installing to ... $IncrementalistFolder"
dotnet tool install Incrementalist.Cmd --version $IncrementalistVersion --tool-path "$IncrementalistFolder"
$SignClientFolder = Join-Path $ToolPath "signclient"
Write-Host "SignClient not found. Installing to ... $SignClientFolder"
dotnet tool install SignClient --version 1.3.155 --tool-path "$SignClientFolder"
}

###########################################################################
Expand Down
3 changes: 2 additions & 1 deletion src/Petabridge.Templates.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
<PackageReleaseNotes>- Switched build automation system from FAKE to [NUKE](https://nuke.build/)
- Upgraded [pb-lib](https://github.com/petabridge/Petabridge.Library/), [`pb-akka-cluster`](https://github.com/petabridge/Petabridge.App) and [`pb-akka-web`](https://github.com/petabridge/Petabridge.App.Web) to all use .NET 6
- Replaced `common.props` with `Directory.Build.props`
- Git versioning with [GitVersion](https://gitversion.net/)</PackageReleaseNotes>
- Git versioning with [GitVersion](https://gitversion.net/)
- Added README to NuGet Package</PackageReleaseNotes>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
Expand Down

0 comments on commit 8b65bfa

Please sign in to comment.