Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
289 changes: 237 additions & 52 deletions mzLib/Readers/Bruker/BrukerFileReader.cs

Large diffs are not rendered by default.

12 changes: 8 additions & 4 deletions mzLib/Readers/Readers.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -53,19 +53,23 @@
</ItemGroup>

<ItemGroup>
<None Update="Bruker\baf2sql_c.dll">
<!-- Bruker baf2sql native library + its VC++ 2012 runtime dependencies.
These live in the project root (not a subfolder) so they copy to the output root
and can be resolved by the bare-name DllImport ("baf2sql_c") in BrukerFileReader.
baf2sql_c.dll depends on msvcp110/msvcr110/vcomp110, so all four must sit together. -->
<None Update="baf2sql_c.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Bruker\baf2sql_c.lib">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Bruker\msvcp110.dll">
<None Update="msvcp110.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Bruker\msvcr110.dll">
<None Update="msvcr110.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Bruker\vcomp110.dll">
<None Update="vcomp110.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Thermo\ThermoFisher.CommonCore.BackgroundSubtraction.dll">
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
243 changes: 239 additions & 4 deletions mzLib/Test/FileReadingTests/SpectraFileReading/TestBruker.cs

Large diffs are not rendered by default.

12 changes: 8 additions & 4 deletions mzLib/mzLib.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,10 @@
<file src="Readers\bin\x64\Release\net8.0\Thermo\ThermoFisher.CommonCore.RawFileReader.dll" target="lib\net8.0" />
<file src="Readers\bin\x64\Release\net8.0\timsdata.dll" target="lib\net8.0" />
<file src="Readers\bin\x64\Release\net8.0\timsdata.lib" target="lib\net8.0" />
<file src="Readers\bin\x64\Release\net8.0\Bruker\msvcp110.dll" target="lib\net8.0" />
<file src="Readers\bin\x64\Release\net8.0\Bruker\msvcr110.dll" target="lib\net8.0" />
<file src="Readers\bin\x64\Release\net8.0\baf2sql_c.dll" target="lib\net8.0" />
<file src="Readers\bin\x64\Release\net8.0\vcomp110.dll" target="lib\net8.0" />
<file src="Readers\bin\x64\Release\net8.0\msvcp110.dll" target="lib\net8.0" />
<file src="Readers\bin\x64\Release\net8.0\msvcr110.dll" target="lib\net8.0" />
<file src="UsefulProteomicsDatabases\bin\x64\Release\net8.0\UsefulProteomicsDatabases.dll" target="lib\net8.0" />
<file src="Transcriptomics\bin\x64\Release\net8.0\Transcriptomics.dll" target="lib\net8.0" />
<!--net8.0-windows target with mzPlot-->
Expand Down Expand Up @@ -114,8 +116,10 @@
<file src="Readers\bin\x64\Release\net8.0\Thermo\ThermoFisher.CommonCore.RawFileReader.dll" target="lib\net8.0-windows7.0" />
<file src="Readers\bin\x64\Release\net8.0\timsdata.dll" target="lib\net8.0-windows7.0" />
<file src="Readers\bin\x64\Release\net8.0\timsdata.lib" target="lib\net8.0-windows7.0" />
<file src="Readers\bin\x64\Release\net8.0\Bruker\msvcp110.dll" target="lib\net8.0-windows7.0" />
<file src="Readers\bin\x64\Release\net8.0\Bruker\msvcr110.dll" target="lib\net8.0-windows7.0" />
<file src="Readers\bin\x64\Release\net8.0\baf2sql_c.dll" target="lib\net8.0-windows7.0" />
<file src="Readers\bin\x64\Release\net8.0\vcomp110.dll" target="lib\net8.0-windows7.0" />
<file src="Readers\bin\x64\Release\net8.0\msvcp110.dll" target="lib\net8.0-windows7.0" />
<file src="Readers\bin\x64\Release\net8.0\msvcr110.dll" target="lib\net8.0-windows7.0" />
<file src="UsefulProteomicsDatabases\bin\x64\Release\net8.0\UsefulProteomicsDatabases.dll" target="lib\net8.0-windows7.0" />
<file src="Transcriptomics\bin\x64\Release\net8.0\Transcriptomics.dll" target="lib\net8.0-windows7.0" />
</files>
Expand Down
Loading