Skip to content

Update PaulovTraderScreenScrollbarPlugin.cs #8

Update PaulovTraderScreenScrollbarPlugin.cs

Update PaulovTraderScreenScrollbarPlugin.cs #8

Workflow file for this run

name: .NET Build
on:
push:
paths-ignore:
- '.github/*'
- '.github/*_TEMPLATE/**'
- '*.md'
pull_request:
paths-ignore:
- '.github/*'
- '.github/*_TEMPLATE/**'
- '*.md'
jobs:
build:
name: .NET on ${{ matrix.runs-on }} (${{ matrix.configuration }})
runs-on: ${{ matrix.runs-on }}
strategy:
fail-fast: false
matrix:
runs-on: [windows-latest]
configuration: [Release,Debug]
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Publish
run: dotnet build -c ${{ matrix.configuration }}
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: SIT-Build-${{ matrix.configuration }}
path: Source\bin\${{ matrix.configuration }}\net472\
if-no-files-found: error