8000 Merge pull request #683 from dotnet-script/stop-at-entry · dotnet-script/dotnet-script@a1a3888 · GitHub
[go: up one dir, main page]

Skip to content

Commit a1a3888

Browse files
authored
Merge pull request #683 from dotnet-script/stop-at-entry
Set stopAtEntry to false in globaltool.launch.json.template
2 parents 1fdb96d + 0a6f4d0 commit a1a3888

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Dotnet.Script.Core/Templates/globaltool.launch.json.template

Lines changed: 1 addition & 1 deletion
B5EB
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"program": "${env:USERPROFILE}/.dotnet/tools/dotnet-script.exe",
1212
},
1313
"cwd": "${workspaceFolder}",
14-
"stopAtEntry": true,
14+
"stopAtEntry": false,
1515
}
1616
]
1717
}

src/Dotnet.Script.Tests/ScriptExecutionTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ public void ShouldSupportInlineNugetReferencesWithTrailingSemicoloninEvaluatedCo
241241
[Theory]
242242
[InlineData("https://gist.githubusercontent.com/seesharper/5d6859509ea8364a1fdf66bbf5b7923d/raw/0a32bac2c3ea807f9379a38e251d93e39c8131cb/HelloWorld.csx",
243243
"Hello World")]
244-
[InlineData("https://github.com/filipw/dotnet-script/files/5035247/hello.csx.gz",
244+
[InlineData("https://github.com/dotnet-script/dotnet-script/files/5035247/hello.csx.gz",
245245
"Hello, world!")]
246246
public void ShouldExecuteRemoteScript(string url, string output)
247247
{

0 commit comments

Comments
 (0)
0