dotnet-script
dotnet-script copied to clipboard
Run C# scripts from the .NET CLI.
When I try to install the dotnet cli tool globally > dotnet tool install --global dotnet-script I get this response: > Failed to install tool package 'dotnet-script': Access to the...
Suppose I have a .dll named "Test.dll", it references a .dll in the same folder named "Test2.dll". Then it should be enough that I include "Test.dll" as a dependency, it...
I tried running this in a clean VM, and ran into some weird problems. Based on this Web article, I am assuming the latest version supports .NET 6: https://www.strathweb.com/2021/11/dotnet-script-1-3-is-out-with-net-6-0-support/#more-6740 Looks...
Having dependency on Newtonsoft.Json cause problems like this: [#663 ](https://github.com/filipw/dotnet-script/issues/663) Since only two places in whole code use it (Not counting the tests). It will be easy to replace this...
Hi, it feels like either some bug or misconfiguration: When starting a basic project (created with `dotnet script init`), with debugger in latest VSCode, breakpoint in csx file is not...
Is there any way to change the target framework for a dotnet-script file? Currently when I run one of the scripts I've written with `dotnet-script MyFile.csx`, I think it runs...
Hi, when I am running 2 scripts in a row I am getting FileLoadException "Assembly with same name is already loaded". I am using: - nuget package Dotnet.Script 1.3.1 -...
in a folder structure like: ``` /src/nuget.config /src/app/nuget.config /src/app/main.csx ``` packages should be available in main.csx from the sources of all nuget.config files as per https://docs.microsoft.com/en-us/nuget/consume-packages/configuring-nuget-behavior#how-settings-are-applied dotnet-script is ignoring the...
How to use `dotnet script publish`? `dotnet script publish .csx` fails with `dotnet publish failed with result '1'`. 