get_date.ps1 316 B

123456
  1. # Copyright 2025 BackendServerTemplate Authors. All rights reserved.
  2. # Use of this source code is governed by a MIT-style
  3. # license that can be found in the LICENSE file.
  4. $timestamp = [math]::Floor([decimal]((Get-Date).ToUniversalTime() | Get-Date -UFormat %s))
  5. Set-Content -Path "build_date.txt" -Value $timestamp