FindTrueHeaderPosition: Determine header offset to locate XREF entrie… #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a .NET project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | |
name: Build solution | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 7.0.x | |
- name: Restore dependencies | |
run: dotnet restore dotNET/PDFClown.sln | |
- name: Build | |
run: dotnet build dotNET/PDFClown.sln --no-restore /p:PackageOutputPath=artifacts /p:ContinuousIntegrationBuild=true | |
- name: Upload nuget package artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: nuget-package | |
path: dotNET/pdfclown.lib/artifacts | |