dotnet-execute 0.7.0-preview-20220702-093315

This is a prerelease version of dotnet-execute.
There is a newer version of this package available.
See the version list below for details.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet tool install --global dotnet-execute --version 0.7.0-preview-20220702-093315                
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo
dotnet tool install --local dotnet-execute --version 0.7.0-preview-20220702-093315                
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=dotnet-execute&version=0.7.0-preview-20220702-093315&prerelease                
nuke :add-package dotnet-execute --version 0.7.0-preview-20220702-093315                

dotnet-exec

dotnet-execute

dotnet-execute Latest

default

Docker Pulls

Intro

dotnet-exec is a command line tool for executing C# program without a project file, and you can have your custom entry point other than Main method

Install/Update

Latest stable version:

dotnet tool update -g dotnet-execute

Latest preview version:

dotnet tool update -g dotnet-execute --prerelease

Examples

Execute local file:

dotnet-exec HttpPathJsonSample.cs

Execute local file with custom entry point:

dotnet-exec HttpPathJsonSample.cs --entry MainTest

Execute remote file:

dotnet-exec https://github.com/WeihanLi/SamplesInPractice/blob/master/net7Sample/Net7Sample/ArgumentExceptionSample.cs

Execute file with preview features:

dotnet-exec RawStringLiteral.cs --preview

Execute raw code:

dotnet-exec 'code:Console.WriteLine(1+1);'

Execute raw code with custom usings:

dotnet-exec 'code:WriteLine(1+1);' --using "static System.Console"

Execute raw code with custom reference:

dotnet-exec 'code:CsvHelper.GetCsvText(new[]{1,2,3}).Dump();' -r "nuget:WeihanLi.Npoi,2.3.0" --using "WeihanLi.Npoi"

Execute script:

dotnet-exec 'script:1+1'

Execute script with custom reference:

dotnet-exec 'script:Console.WriteLine(CsvHelper.GetCsvText(new[]{1,2,3}))' -r "nuget:WeihanLi.Npoi,2.3.0" -u WeihanLi.Npoi

Execute raw code with docker

docker run --rm weihanli/dotnet-exec:latest dotnet-exec "code:(1+1).Dump()"

More

LanguageVersion

By default, it's using the latest language version, you can use the Preview version with --preview/--lang-version=Preview

EntryPoint

By default, it would use MainTest as the entry point, you can customize with --entry option

TargetFramework

By default, it would use net7.0 if you've installed .NET 7 SDK, otherwise use .NET 6 instead, you can customize with the -f/--framework option

CompilerType

By default, it would use the DefaultCodeCompiler to compile the code, you can customize with the --compiler-type option, and you can use -a/--advanced for --compiler-type=advanced

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last updated
0.24.0-preview-20240918-153023 135 9/18/2024
0.24.0-preview-20240911-171636 195 9/11/2024
0.23.0 1,312 8/29/2024
0.23.0-preview-20240824-102835 163 8/24/2024
0.23.0-preview-20240815-002214 283 8/15/2024
0.22.0 2,003 7/10/2024
0.21.0 1,163 6/15/2024
0.20.0 518 6/6/2024
0.19.0 1,708 4/21/2024
0.18.1 2,484 3/2/2024
0.18.0 727 3/1/2024
0.17.0 1,087 2/6/2024
0.16.0 1,404 1/5/2024
0.15.0 1,501 11/23/2023
0.14.0 2,017 4/22/2023
0.13.0 1,904 3/16/2023
0.12.0 2,044 12/3/2022
0.11.0 1,925 11/22/2022
0.10.0 1,897 11/15/2022
0.9.0 1,845 11/9/2022
0.8.0 2,039 10/26/2022
0.7.0 2,166 7/17/2022
0.6.0 2,259 7/1/2022
0.5.0 2,208 6/26/2022
0.4.0 2,192 6/18/2022
0.3.0 2,613 6/5/2022
0.2.0 2,344 5/29/2022
0.1.1 4,745 5/4/2022
0.1.0 2,559 5/4/2022