Skip to content

Repo: professionalize structure, docs, and release standards #1

Repo: professionalize structure, docs, and release standards

Repo: professionalize structure, docs, and release standards #1

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore
run: dotnet restore .\\solution\\ImageUiSlicer\\ImageUiSlicer.csproj
- name: Build (Release)
run: dotnet build .\\solution\\ImageUiSlicer\\ImageUiSlicer.csproj -c Release --no-restore