Skip to content

Commit

Permalink
Fixed a minor issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
lextm committed Nov 16, 2024
1 parent 0b7e084 commit bb98f3a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions get.hashes.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
$files = Get-ChildItem .\artifacts\installers\Release\* -Include ('*.msi') -File

Write-Output "SHA-1 hashes of the installers are,`n"

foreach ($file in $files) {
$hash = Get-FileHash $file.FullName -Algorithm SHA1
Write-Output "* $($file.Name): $($hash.Hash)"
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#define CS_ASPNETCORE_CLEAN_SHADOW_DIRECTORY_CONTENT L"cleanShadowCopyDirectory"
#define CS_ASPNETCORE_DISALLOW_ROTATE_CONFIG L"disallowRotationOnConfigChange"
#define CS_ASPNETCORE_SHUTDOWN_DELAY L"shutdownDelay"
#define CS_ASPNETCORE_SHUTDOWN_DELAY_ENV L"ANCM_shutdownDelay"
#define CS_ASPNETCORE_SHUTDOWN_DELAY_ENV L"HTTP_PLATFORM_shutdownDelay"

ShimOptions::ShimOptions(const ConfigurationSource &configurationSource) :
m_hostingModel(HOSTING_UNKNOWN),
Expand Down

0 comments on commit bb98f3a

Please sign in to comment.