< Summary - Kestrun — Combined Coverage

Information
Class: Public.Runtime.Get-KrBuiltTargetFrameworkVersion
Assembly: Kestrun.PowerShell.Public
File(s): /home/runner/work/Kestrun/Kestrun/src/PowerShell/Kestrun/Public/Runtime/Get-KrBuiltTargetFrameworkVersion.ps1
Tag: Kestrun/Kestrun@5f1d2b981c9d7292c11fd448428c6ab6c811c5de
Line coverage
100%
Covered lines: 1
Uncovered lines: 0
Coverable lines: 1
Total lines: 20
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100 11/19/2025 - 17:40:50 Line coverage: 100% (1/1) Total lines: 20 Tag: Kestrun/Kestrun@fcf33342333cef0516fe0d0912a86709874fd026

Metrics

File(s)

/home/runner/work/Kestrun/Kestrun/src/PowerShell/Kestrun/Public/Runtime/Get-KrBuiltTargetFrameworkVersion.ps1

#LineLine coverage
 1<#
 2.SYNOPSIS
 3    Gets the target framework version that Kestrun was built against.
 4.DESCRIPTION
 5    This cmdlet retrieves the target framework version that the Kestrun runtime was built against.
 6    This information can be useful for understanding the capabilities and features available in the current Kestrun runt
 7.OUTPUTS
 8    System.Version
 9.EXAMPLE
 10    Get-KrBuiltTargetFrameworkVersion
 11    This example retrieves the target framework version that Kestrun was built against.
 12    The output will be a Version object representing the target framework version.
 13#>
 14function Get-KrBuiltTargetFrameworkVersion {
 15    [KestrunRuntimeApi('Everywhere')]
 16    [CmdletBinding()]
 17    [OutputType([Version])]
 18    param()
 119    [Kestrun.KestrunRuntimeInfo]::GetBuiltTargetFrameworkVersion()
 20}