ebpf-for-windows/scripts/Set-Version.ps1

9 строки
267 B
PowerShell

# Copyright (c) Microsoft Corporation
# SPDX-License-Identifier: MIT
param ($InputFile, $OutputFile)
$version = &"$PSScriptRoot\Get-Version.ps1"
$content = Get-Content $InputFile
$content = $content.Replace("{version}", $version)
set-content $OutputFile $content