Last active
January 4, 2025 20:30
-
-
Save eugrus/8bb9296e14826aaa5ab5ffb7a051cbc3 to your computer and use it in GitHub Desktop.
PowerShell loader for C# code
This file contains 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
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