diff --git a/src/Dotnet.Script.Core/Templates/globaltool.launch.json.template b/src/Dotnet.Script.Core/Templates/globaltool.launch.json.template index cf76da42..305245ba 100644 --- a/src/Dotnet.Script.Core/Templates/globaltool.launch.json.template +++ b/src/Dotnet.Script.Core/Templates/globaltool.launch.json.template @@ -11,7 +11,7 @@ "program": "${env:USERPROFILE}/.dotnet/tools/dotnet-script.exe", }, "cwd": "${workspaceFolder}", - "stopAtEntry": true, + "stopAtEntry": false, } ] } \ No newline at end of file diff --git a/src/Dotnet.Script.Tests/ScriptExecutionTests.cs b/src/Dotnet.Script.Tests/ScriptExecutionTests.cs index 3bfb3764..90fd6ecc 100644 --- a/src/Dotnet.Script.Tests/ScriptExecutionTests.cs +++ b/src/Dotnet.Script.Tests/ScriptExecutionTests.cs @@ -241,7 +241,7 @@ public void ShouldSupportInlineNugetReferencesWithTrailingSemicoloninEvaluatedCo [Theory] [InlineData("https://gist.githubusercontent.com/seesharper/5d6859509ea8364a1fdf66bbf5b7923d/raw/0a32bac2c3ea807f9379a38e251d93e39c8131cb/HelloWorld.csx", "Hello World")] - [InlineData("https://github.com/filipw/dotnet-script/files/5035247/hello.csx.gz", + [InlineData("https://github.com/dotnet-script/dotnet-script/files/5035247/hello.csx.gz", "Hello, world!")] public void ShouldExecuteRemoteScript(string url, string output) {