< 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@2d87023b37eb91155071c91dd3d6a2eeb3004705
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 10/13/2025 - 16:52:37 Line coverage: 100% (1/1) Total lines: 20 Tag: Kestrun/Kestrun@10d476bee71c71ad215bb8ab59f219887b5b4a5e

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}