From 70177796be37710765fc63870f23c4868670ba66 Mon Sep 17 00:00:00 2001 From: Bernhard Richter Date: Tue, 20 Sep 2022 21:03:23 +0200 Subject: [PATCH 1/2] Set stopAtEntry to false in globaltool.launch.json.template --- .../Templates/globaltool.launch.json.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 0a6f4d01a574cb05405ea2b921ae1410d94593f5 Mon Sep 17 00:00:00 2001 From: Bernhard Richter Date: Tue, 20 Sep 2022 21:32:29 +0200 Subject: [PATCH 2/2] Fix url in remote script test --- src/Dotnet.Script.Tests/ScriptExecutionTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {