Skip to content

Instantly share code, notes, and snippets.

@eugrus
Last active January 4, 2025 20:30
Show Gist options
  • Save eugrus/8bb9296e14826aaa5ab5ffb7a051cbc3 to your computer and use it in GitHub Desktop.
Save eugrus/8bb9296e14826aaa5ab5ffb7a051cbc3 to your computer and use it in GitHub Desktop.
PowerShell loader for C# code
param([string]$CSFilePath)
Add-Type -LiteralPath $CSFilePath -IgnoreWarnings
[Program]::Main(@())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment