I'm trying to export a TLB file for a F# DLL. For .NET Framework up to 4.8 the following custom build command works:
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command=""$(TargetFrameworkSDKToolsDirectory)\tlbexp" /verbose "$(TargetPath)"" />
</Target>
I've switched to .NET 6.0 (Visual Studio 2022), and the TargetFrameSDKToolsDirectory is pointing to
C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\\
What is the equivalent variable to find the .NET Core 6.0 version of tlbexp?