diff --git a/LibZipSharp.props b/LibZipSharp.props
index a6825f42..bd1d2c2c 100644
--- a/LibZipSharp.props
+++ b/LibZipSharp.props
@@ -1,5 +1,5 @@
- <_LibZipSharpNugetVersion>1.0.22
+ <_LibZipSharpNugetVersion>1.0.23
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 13b5e3c5..335ee851 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -32,14 +32,14 @@ stages:
displayName: "Build"
- task: ArchiveFiles@2
inputs:
- rootFolderOrFile: build\Windows\32\lib\Release\zip.dll
+ rootFolderOrFile: build\Windows\32\lib\RelWithDebInfo\
includeRootFolder: false
archiveType: 7z
replaceExistingArchive: true
archiveFile: $(Build.ArtifactStagingDirectory)\libzip-windows-x86.7z
- task: ArchiveFiles@2
inputs:
- rootFolderOrFile: build\Windows\64\lib\Release\zip.dll
+ rootFolderOrFile: build\Windows\64\lib\RelWithDebInfo\
includeRootFolder: false
archiveType: 7z
replaceExistingArchive: true
@@ -144,6 +144,8 @@ stages:
mv build/Linux/64/libzip.so.5.3 build/Linux/64/libzip.so
mv build/Windows/32/zip.dll build/Windows/32/libzip.dll
mv build/Windows/64/zip.dll build/Windows/64/libzip.dll
+ mv build/Windows/32/zip.pdb build/Windows/32/libzip.pdb
+ mv build/Windows/64/zip.pdb build/Windows/64/libzip.pdb
rm $(Build.ArtifactStagingDirectory)/native/libzip-linux-*.7z
rm $(Build.ArtifactStagingDirectory)/native/libzip-windows-*.7z
displayName: 'Find libzip'
diff --git a/build_windows.bat b/build_windows.bat
index db3851c5..7a5f1344 100644
--- a/build_windows.bat
+++ b/build_windows.bat
@@ -16,12 +16,12 @@ pushd .
mkdir .\build\Windows\64
cd .\build\Windows\64
cmake %LIBZIP_FEATURES% %COMMON_CMAKE_PARAMS% -DZLIB_ROOT=..\..\..\external\vcpkg\installed\x64-windows-static -A x64 ..\..\..\external\libzip
-cmake --build . --config Release -v
+cmake --build . --config RelWithDebInfo -v
popd
pushd .
mkdir .\build\Windows\32
cd .\build\Windows\32
cmake %LIBZIP_FEATURES% %COMMON_CMAKE_PARAMS% -DZLIB_ROOT=..\..\..\external\vcpkg\installed\x86-windows-static -A Win32 ..\..\..\external\libzip
-cmake --build . --config Release -v
+cmake --build . --config RelWithDebInfo -v
popd
diff --git a/libZipSharp.csproj b/libZipSharp.csproj
index 1b358d6a..fa70420c 100644
--- a/libZipSharp.csproj
+++ b/libZipSharp.csproj
@@ -53,7 +53,9 @@
+
+