Created
June 15, 2018 22:15
-
-
Save IlyaFinkelshteyn/e15d568849c22cfb755a0094385e42d4 to your computer and use it in GitHub Desktop.
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
# use https://www.linqpad.net/lprun.aspx for C# scripting | |
install: | |
- choco install linqpad | |
- set path=C:\Program Files (x86)\LINQPad5\;%path% | |
build_script: | |
- ps: | | |
$program = @" | |
// C# script start <<<<<<<<<<<<<<<<<<<<<<<<< | |
for (int i = 0; i < 3; i++) | |
{ | |
Console.WriteLine(i); | |
} | |
// C# script end <<<<<<<<<<<<<<<<<<<<<<<<<<< | |
"@ | |
- ps: $program | Out-File test-lprun.linq | |
- lprun -lang=Statements test-lprun.linq |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment