From c23ad72f1eae3d416677095ea20e3efb3664f87d Mon Sep 17 00:00:00 2001 From: Brandon Foss <46940941+fossbrandon@users.noreply.github.com> Date: Thu, 13 Jun 2024 12:33:28 -0700 Subject: [PATCH] Update C# script runner --- README.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e0dd796..91b478d 100644 --- a/README.md +++ b/README.md @@ -200,7 +200,7 @@ To set whether to preserve focus on code editor after code run is triggered (def ## Note * For Objective-C, it is only supported on macOS -* To run C# script, you need to install [scriptcs](http://scriptcs.net/) +* To run C# scripts, you need to install [dotnet-script](https://github.com/dotnet-script/dotnet-script) * To run TypeScript, you need to install [ts-node](https://github.com/TypeStrong/ts-node) * To run Clojure, you need to install [Leiningen](https://leiningen.org/) and [lein-exec](https://github.com/kumarshantanu/lein-exec) diff --git a/package.json b/package.json index 075781c..2c9d18e 100644 --- a/package.json +++ b/package.json @@ -150,7 +150,7 @@ "bat": "cmd /c", "shellscript": "bash", "fsharp": "fsi", - "csharp": "scriptcs", + "csharp": "dotnet script", "vbscript": "cscript //Nologo", "typescript": "ts-node", "coffeescript": "coffee",