On Windows, how do I tell Jenkins to allow ssh-rsa connections to git?

I know how to configure Jenkins to allow ssh-rsa in Ubuntu:

Create the file /var/lib/jenkins/.ssh/config with the following contents
Host my-git-server
HostKeyAlgorithms +ssh-rsa
PubkeyAcceptedKeyTypes +ssh-rsa

How do I do this in Windows Server ?

The Microsoft Learn article provides a detailed description of Windows configuration of their port of the OpenSSH server.

I’ve used it to configure several Windows Desktop computers to run as Jenkins agents over ssh. I believe the administrators of ci.jenkins.io have done the same with the Windows Server virtual machines that they use for its agents.

Mark, Thanks for the references. The Microsoft Learn article was helpful.