This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Location where ssh-agent settings are persisted | |
SSH_ENV="$HOME/.ssh/environment" | |
# Start ssh-agent and persist its settings | |
function start_agent { | |
echo "Initializing new SSH agent..." | |
touch $SSH_ENV | |
chmod 600 "${SSH_ENV}" | |
/usr/bin/ssh-agent | sed 's/^echo/#echo/' > "${SSH_ENV}" | |
. "${SSH_ENV}" > /dev/null |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.ComponentModel; | |
using System.Xml.XPath; | |
using System.Reflection; | |
using System.Linq; | |
using Microsoft.OpenApi.Any; | |
using Newtonsoft.Json.Serialization; | |
using Microsoft.OpenApi.Models; | |
using Microsoft.AspNetCore.Mvc; |
NewerOlder