├── .gitattributes ├── .github └── workflows │ └── dotnet.yml ├── .gitignore ├── LICENSE ├── PSCH.sln ├── PSCH ├── Data │ └── DataContext.cs ├── Model │ └── FavouriteCommand.cs ├── PSCH.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ └── ChatGptService.cs └── psch.db └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaciejTrudnos/PowerShell-Command-History/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaciejTrudnos/PowerShell-Command-History/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaciejTrudnos/PowerShell-Command-History/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaciejTrudnos/PowerShell-Command-History/HEAD/LICENSE -------------------------------------------------------------------------------- /PSCH.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaciejTrudnos/PowerShell-Command-History/HEAD/PSCH.sln -------------------------------------------------------------------------------- /PSCH/Data/DataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaciejTrudnos/PowerShell-Command-History/HEAD/PSCH/Data/DataContext.cs -------------------------------------------------------------------------------- /PSCH/Model/FavouriteCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaciejTrudnos/PowerShell-Command-History/HEAD/PSCH/Model/FavouriteCommand.cs -------------------------------------------------------------------------------- /PSCH/PSCH.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaciejTrudnos/PowerShell-Command-History/HEAD/PSCH/PSCH.csproj -------------------------------------------------------------------------------- /PSCH/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaciejTrudnos/PowerShell-Command-History/HEAD/PSCH/Program.cs -------------------------------------------------------------------------------- /PSCH/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaciejTrudnos/PowerShell-Command-History/HEAD/PSCH/Properties/launchSettings.json -------------------------------------------------------------------------------- /PSCH/Services/ChatGptService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaciejTrudnos/PowerShell-Command-History/HEAD/PSCH/Services/ChatGptService.cs -------------------------------------------------------------------------------- /PSCH/psch.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaciejTrudnos/PowerShell-Command-History/HEAD/PSCH/psch.db -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaciejTrudnos/PowerShell-Command-History/HEAD/README.md --------------------------------------------------------------------------------