fsprojects / ExcelProvider

This library is for the .NET platform implementing a Excel type provider.
http://fsprojects.github.io/ExcelProvider/
The Unlicense
141 stars 51 forks source link

Fix issue #69 - Build.cmd failing #70

Closed quintusm closed 4 years ago

quintusm commented 4 years ago

As reported build.cmd was failing on Windows with error FS2026: Deterministic builds only support portable PDB's

This seems to be due to a change in the compiler. Traditional PDB's are not usable on non-windows platforms, and not well documented. Portable PDB's can be used on all platforms, so are now required for reproducible builds which can work cross-platform.

I have updated the project files to build portable pdb's, which allows the build process to complete successfully