Skip to content

WeihanLi/dotnet-exec-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dotnet-exec-action

Intro

Github action for dotnet-exec

This is a github action for executing C# scripts with dotnet-exec easily without setting up the dotnet environment

Arguments

script

Required, the script to be executed

options

Optional, the more options to be used when executing script

arguments

Optional, the command-line arguments to be passed to the script

Example usage

- name: dotnet-exec script
  uses: WeihanLi/dotnet-exec-action@0.19.0
  with:
    script: "./build/build.cs" # script text or script path
    options: "--web --debug" # optional
    arguments: "target=test" # optional