mirror of
https://github.com/michaelrsweet/pdfio.git
synced 2025-04-23 17:06:53 +02:00
Compare commits
2 Commits
986c5f0438
...
0c1122b689
Author | SHA1 | Date | |
---|---|---|---|
|
0c1122b689 | ||
|
d4f8dd46b5 |
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@ -60,3 +60,5 @@ jobs:
|
||||
run: nuget restore pdfio.sln
|
||||
- name: Build PDFio
|
||||
run: msbuild pdfio.sln
|
||||
- name: Test PDFio
|
||||
run: .\runtests.bat x64\Debug
|
||||
|
@ -2,8 +2,8 @@ Changes in PDFio
|
||||
================
|
||||
|
||||
|
||||
v1.3.0 (Month DD, YYYY)
|
||||
-----------------------
|
||||
v1.3.0 (June 28, 2024)
|
||||
----------------------
|
||||
|
||||
- Added `pdfioFileGetCatalog` API for accessing the root/catalog object of a
|
||||
PDF file (Issue #67)
|
||||
|
16
runtests.bat
Normal file
16
runtests.bat
Normal file
@ -0,0 +1,16 @@
|
||||
:: Script to run unit test program
|
||||
::
|
||||
:: Usage:
|
||||
::
|
||||
:: .\runtests.bat x64\{Debug|Release}
|
||||
::
|
||||
|
||||
:: Copy dependent DLLs to the named build directory
|
||||
echo Copying DLLs
|
||||
copy packages\zlib_native.redist.1.2.11\build\native\bin\x64\Debug\*.dll %1
|
||||
copy packages\zlib_native.redist.1.2.11\build\native\bin\x64\Release\*.dll %1
|
||||
|
||||
:: Run unit test program
|
||||
echo Running %1\testpdfio.exe
|
||||
cd %1
|
||||
testpdfio.exe
|
Loading…
x
Reference in New Issue
Block a user