You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
-2Lines changed: 0 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -313,7 +313,6 @@ To consume a script package all we need to do specify the NuGet package in the `
313
313
The following example loads the [simple-targets](https://www.nuget.org/packages/simple-targets-csx) package that contains script files to be included in our script.
314
314
315
315
```C#
316
-
#! "netcoreapp3.1"
317
316
#load"nuget:simple-targets-csx, 6.0.0"
318
317
319
318
usingstaticSimpleTargets;
@@ -463,7 +462,6 @@ The following example shows how we can pipe data in and out of a script.
463
462
The `UpperCase.csx` script simply converts the standard input to upper case and writes it back out to standard output.
464
463
465
464
```csharp
466
-
#! "netcoreapp3.1"
467
465
using (varstreamReader=newStreamReader(Console.OpenStandardInput()))
0 commit comments