Skip to content

Update to read and write to Cliloc for all client versions. #33

Update to read and write to Cliloc for all client versions.

Update to read and write to Cliloc for all client versions. #33

Workflow file for this run

name: Build (PR)
on:
pull_request:
branches:
- "**"
permissions:
contents: read
jobs:
build:
name: Build
runs-on: windows-latest
strategy:
matrix:
configuration:
- Release
env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: 1
Solution_Name: UoFiddler.sln
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 1
- name: Install .NET Core
uses: actions/[email protected]
with:
dotnet-version: 8.0.x
- name: Restore & build the application
run: dotnet build $env:Solution_Name --configuration $env:Configuration
env:
Configuration: ${{ matrix.configuration }}