Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
Add nuget.exe back to vendor. We no longer need it, but it might be u…
Browse files Browse the repository at this point in the history
…seful for others.
  • Loading branch information
caesay committed Jan 17, 2022
1 parent ba0b09a commit 7038ff3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Copy-Item -Path "$PSScriptRoot\vendor\7zip\*" -Destination "$BinOut" -Recurse
Copy-Item -Path "$PSScriptRoot\vendor\wix\*" -Destination "$BinOut" -Recurse
Copy-Item "$In\Win32\Setup.exe" -Destination "$BinOut"
Copy-Item "$In\Win32\StubExecutable.exe" -Destination "$BinOut"
Copy-Item "$PSScriptRoot\vendor\nuget.exe" -Destination "$BinOut"
Copy-Item "$PSScriptRoot\vendor\rcedit.exe" -Destination "$BinOut"
Copy-Item "$PSScriptRoot\vendor\signtool.exe" -Destination "$BinOut"
Copy-Item "$PSScriptRoot\vendor\singlefilehost.exe" -Destination "$BinOut"
Expand Down
Binary file added vendor/NuGet.exe
Binary file not shown.
5 changes: 5 additions & 0 deletions vendor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ This folder contains pre-compiled binaries from a variety of sources. These shou
- Can also be downloaded from NuGet, from here https://www.nuget.org/packages/Microsoft.NETCore.App.Host.win-x86/6.0.0
- MIT License: https://github.com/dotnet/runtime/blob/main/LICENSE.TXT

### nuget.exe
- Used with the `pack` command to bundle an application directory into a nuget package, which is then used to create Squirrel releases
- Can be found at https://www.nuget.org/downloads
- Apache 2.0 License: https://github.com/NuGet/NuGet.Client/blob/dev/LICENSE.txt

### rcedit.exe
- Updates PE resources, like VersionInfo or icons. It is used when generating `Setup.exe` and `Update.exe` to apply the user preferences.
- Can be found at https://github.com/electron/rcedit/releases
Expand Down

0 comments on commit 7038ff3

Please sign in to comment.