Skip to content

fix path of icon on .csproj #3

fix path of icon on .csproj

fix path of icon on .csproj #3

Workflow file for this run

name: "Build"
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: true
DOTNET_GENERATE_ASPNET_CERTIFICATE: false
DOTNET_ADD_GLOBAL_TOOLS_TO_PATH: false
DOTNET_MULTILEVEL_LOOKUP: 0
DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION: true
TERM: xterm
steps:
- uses: actions/checkout@v4
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.200
- name: Restore
run: dotnet restore ${{ github.workspace }}/src/SharpCLIParser
- name: Build
run: dotnet build ${{ github.workspace }}/src/SharpCLIParser --configuration Release --no-restore