8000 Update README.md · dotnet-script/dotnet-script@07e10a2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 07e10a2

Browse files
authored
Update README.md
1 parent 4bbcc1a commit 07e10a2

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,6 @@ To consume a script package all we need to do specify the NuGet package in the `
313313
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.
314314

315315
```C#
316-
#! "netcoreapp3.1"
317316
#load "nuget:simple-targets-csx, 6.0.0"
318317

319318
using static SimpleTargets;
@@ -463,7 +462,6 @@ The following example shows how we can pipe data in and out of a script.
463462
The `UpperCase.csx` script simply converts the standard input to upper case and writes it back out to standard output.
464463

465464
```csharp
466-
#! "netcoreapp3.1"
467465
using (var streamReader = new StreamReader(Console.OpenStandardInput()))
468466
{
469467
Write(streamReader.ReadToEnd().ToUpper());

0 commit comments

Comments
 (0)
0