27 lines
473 B
YAML
27 lines
473 B
YAML
name: 'Dotnet sdk build'
|
|
description: 'Building arm-gcc projects'
|
|
branding:
|
|
color: blue
|
|
icon: app-indicator
|
|
inputs:
|
|
command:
|
|
description: 'Command'
|
|
required: true
|
|
default: dotnet --version
|
|
runs:
|
|
using: 'docker'
|
|
image: 'docker://mcr.microsoft.com/dotnet/sdk:6.0'
|
|
args:
|
|
- dotnet
|
|
- publish
|
|
- -c
|
|
- Release
|
|
- -o
|
|
- out
|
|
- -r
|
|
- win-x64
|
|
- --self-contained
|
|
- false
|
|
- /p:EnableWindowsTargeting=true
|
|
|