-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tims tof reader #812
base: master
Are you sure you want to change the base?
Tims tof reader #812
Changes from all commits
d5cb13f
d001aca
ef23825
93d47c6
5675c5c
a574388
57a061f
b59ee70
b8fe87c
6dd39d1
a9df28f
1ae9727
5632fa0
91096ee
23e0a8c
7e2177e
be4ca1b
b038767
cad6bae
e766260
0236386
4ca6874
94beb90
952f021
1d47d49
a9fb8b3
26285c5
d6b9e75
f6c740a
21aefc9
6417ef4
26d2058
fa6be72
b1a36f3
aeae7c1
8c9ae65
da39272
c350aa9
276ce1a
a2eeffc
f2ef052
df8ac01
3b1e61d
597b175
072f2da
fc44991
17b9103
e8be6d8
ec1e7c6
8360603
9de6bfe
db69e2c
6b652d0
55c6094
03bd993
607a9f1
323046b
8033e37
ec1cf8e
d20d2c1
827318c
253d258
dd4b1d3
067189d
c536184
b59cc57
2c8cfea
e120c82
9433a17
3edf877
52a25b1
cb28554
d13c67a
dc18bf0
7a67440
8acc4d7
330eac7
4695762
12503cb
b6193fd
c865b20
8854769
362f654
4d72987
015f8d8
f0e20d5
a373255
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<Platforms>x64</Platforms> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
</PropertyGroup> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "In a C# project file (.csproj), the "AllowUnsafeBlocks" property within a "PropertyGroup" is used to enable the compilation of code containing "unsafe" blocks, which allows the use of pointers and direct memory manipulation, but should be used with caution due to the potential for memory management issues and security risks." |
||
|
||
<ItemGroup> | ||
<PackageReference Include="CsvHelper" Version="32.0.3" /> | ||
<PackageReference Include="OpenMcdf" Version="2.3.1" /> | ||
<PackageReference Include="OpenMcdf.Extensions" Version="2.3.1" /> | ||
<PackageReference Include="System.Data.SQLite" Version="1.0.118" /> | ||
<PackageReference Include="System.Runtime.InteropServices" Version="4.3.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
|
@@ -21,7 +23,6 @@ | |
</ItemGroup> | ||
|
||
<ItemGroup> | ||
|
||
<Reference Include="ThermoFisher.CommonCore.BackgroundSubtraction"> | ||
<HintPath>Thermo\ThermoFisher.CommonCore.BackgroundSubtraction.dll</HintPath> | ||
</Reference> | ||
|
@@ -70,6 +71,18 @@ | |
<None Update="Thermo\ThermoFisher.CommonCore.RawFileReader.dll"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</None> | ||
<None Update="timsdata.dll"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="timsdata.lib"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="timsTOF\baf2sql_c.dll"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</None> | ||
<None Update="timsTOF\baf2sql_c.lib"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
|
||
</Project> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not just (EnumType)integer?