Initial commit

This commit is contained in:
github-classroom[bot] 2024-09-12 12:42:00 +00:00 committed by GitHub
commit 612509ac25
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 4614 additions and 0 deletions

3
CleanSolutionDir.ps1 Normal file
View file

@ -0,0 +1,3 @@
Get-ChildItem -Path $PSScriptroot -Recurse -Force -Include '.vs', '.git', 'bin', 'obj', '.idea', '*.Dotsettings', '*.Dotsettings.user' | ForEach-Object {
Remove-Item -Recurse -Force -LiteralPath $_.FullName >$null
}